issue 2119. supporting php 5.4. adminlogging module

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12712 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2013-02-06 09:23:36 +00:00
parent 3df6b3ecd7
commit 6823f75f45
3 changed files with 21 additions and 5 deletions

View file

@ -1,4 +1,5 @@
<?php
/**
* adminlogging class
* Base class of adminlogging module
@ -9,6 +10,7 @@
*/
class adminlogging extends ModuleObject
{
/**
* Install adminlogging module
* @return Object
@ -24,7 +26,7 @@ class adminlogging extends ModuleObject
*/
function checkUpdate()
{
return false;
return FALSE;
}
/**
@ -42,7 +44,9 @@ class adminlogging extends ModuleObject
*/
function recompileCache()
{
}
}
/* End of file adminlogging.class.php */
/* Location: ./modules/adminlogging/adminlogging.class.php */