summaryrefslogtreecommitdiffstats
path: root/lib/log.php
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-07-29 21:36:03 +0200
committerJakob Sack <kde@jakobsack.de>2011-07-29 21:36:03 +0200
commitbafd684eb694ed0bd86b46ff7cd36382c1cebc34 (patch)
treec3bb1e013d563263002d052eb41032076a36a5f9 /lib/log.php
parent220132ca237f5077f5145bf327e8528a652ad559 (diff)
downloadnextcloud-server-bafd684eb694ed0bd86b46ff7cd36382c1cebc34.tar.gz
nextcloud-server-bafd684eb694ed0bd86b46ff7cd36382c1cebc34.zip
Renaming classes :-)
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;