summaryrefslogtreecommitdiffstats
path: root/lib/log.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/log.php')
-rw-r--r--lib/log.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/log.php b/lib/log.php
index d7c280ea65e..d51b2ef0785 100644
--- a/lib/log.php
+++ b/lib/log.php
@@ -39,7 +39,7 @@
/**
* This class is for logging
*/
-class OC_LOG {
+class OC_Log {
/**
* @brief adds an entry to the log
* @param $appid id of the app
@@ -101,7 +101,7 @@ class OC_LOG {
$result=$query->execute($params)->fetchAll();
if(count($result)>0 and is_numeric($result[0]['moment'])){
foreach($result as &$row){
- $row['moment']=OC_UTIL::formatDate($row['moment']);
+ $row['moment']=OC_Util::formatDate($row['moment']);
}
}
return $result;