restore PluginMaintain::autoUpdate throwing a warning instead of a fatal error

git-svn-id: http://piwigo.org/svn/trunk@29316 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
mistic100 2014-08-29 07:26:53 +00:00
parent 4d65035b39
commit 2b1bba7ffa

View file

@ -70,6 +70,17 @@ class PluginMaintain
* @param array &$errors - used to return error messages
*/
function update($old_version, $new_version, &$errors=array()) {}
/**
* @removed 2.7
*/
function autoUpdate()
{
if (is_admin() && !defined('IN_WS'))
{
trigger_error('Function PluginMaintain::autoUpdate deprecated', E_USER_WARNING);
}
}
}
/**