From: Morris Jobke Date: Wed, 28 Aug 2013 16:36:32 +0000 (+0200) Subject: fix typo X-Git-Tag: v6.0.0alpha2~253^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d4952bd9df679306ff3e2a8efba1f37ed9d97044;p=nextcloud-server.git fix typo --- diff --git a/lib/log/rotate.php b/lib/log/rotate.php index b620f0be15c..bf23ad588b3 100644 --- a/lib/log/rotate.php +++ b/lib/log/rotate.php @@ -17,7 +17,7 @@ namespace OC\Log; class Rotate extends \OC\BackgroundJob\Job { private $max_log_size; public function run($logFile) { - $this->max_log_size = OC_Config::getValue('log_rotate_size', false); + $this->max_log_size = \OC_Config::getValue('log_rotate_size', false); if ($this->max_log_size) { $filesize = @filesize($logFile); if ($filesize >= $this->max_log_size) {