diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-06-28 16:23:26 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-06-28 16:23:26 +0200 |
commit | 6d3349c85e5303b2e4153829b3533357773dbec4 (patch) | |
tree | c862fefc76842373245a6a87f5ed1fb5cd251879 /lib/defaults.php | |
parent | 6ae9af16f9fc9eb9157a5fc7dfa35ec5abe1a5b8 (diff) | |
download | nextcloud-server-6d3349c85e5303b2e4153829b3533357773dbec4.tar.gz nextcloud-server-6d3349c85e5303b2e4153829b3533357773dbec4.zip |
PHP Strict standards: Non-static method OC_Defaults::themeExist() should not be called statically
Diffstat (limited to 'lib/defaults.php')
-rw-r--r-- | lib/defaults.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/defaults.php b/lib/defaults.php index 215b148f946..e674883fba5 100644 --- a/lib/defaults.php +++ b/lib/defaults.php @@ -19,7 +19,7 @@ class OC_Defaults { private static $defaultSlogan = "web services under your control"; private static $defaultLogoClaim = "ownCloud Community"; - private function themeExist($method) { + private static function themeExist($method) { if (OC_Util::getTheme() !== '' && method_exists('OC_Theme', $method)) { return true; } |