feature 3076: Enhance plugin update system

git-svn-id: http://piwigo.org/svn/trunk@28651 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
mistic100
2014-06-09 17:20:43 +00:00
parent 3f1cd5643b
commit 6b7535498c
3 changed files with 103 additions and 109 deletions
+3 -11
View File
@@ -86,19 +86,11 @@ class themes
if (class_exists($classname))
{
$theme_maintain = new $classname($theme_id);
}
else
{
$theme_maintain = new DummyTheme_maintain($theme_id);
return new $classname($theme_id);
}
}
else
{
$theme_maintain = new DummyTheme_maintain($theme_id);
}
return $theme_maintain;
return new DummyTheme_maintain($theme_id);
}
/**