summaryrefslogtreecommitdiffstats
path: root/lib/defaults.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-06-28 16:23:26 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2013-06-28 16:23:26 +0200
commit6d3349c85e5303b2e4153829b3533357773dbec4 (patch)
treec862fefc76842373245a6a87f5ed1fb5cd251879 /lib/defaults.php
parent6ae9af16f9fc9eb9157a5fc7dfa35ec5abe1a5b8 (diff)
downloadnextcloud-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.php2
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;
}