From 2b1bba7ffafdfc4447c28dc8fee77b9eca97a672 Mon Sep 17 00:00:00 2001 From: mistic100 Date: Fri, 29 Aug 2014 07:26:53 +0000 Subject: 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 --- include/functions_plugins.inc.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'include/functions_plugins.inc.php') diff --git a/include/functions_plugins.inc.php b/include/functions_plugins.inc.php index b980390a8..5790eccf7 100644 --- a/include/functions_plugins.inc.php +++ b/include/functions_plugins.inc.php @@ -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); + } + } } /** -- cgit v1.2.3