Bugfix: do not store plugin errors in data.php
Before this, calling writeConfig() would have write error messages in data.php, because it uses 'plugins' array which is used for plugin configuration. Causing the message error appear everytime.
This commit is contained in:
parent
a5dd1772bd
commit
e4b9a7633d
3 changed files with 4 additions and 4 deletions
|
@ -679,8 +679,8 @@ private function initialize()
|
||||||
$this->tpl->assign('pagetitle', $GLOBALS['pagetitle']);
|
$this->tpl->assign('pagetitle', $GLOBALS['pagetitle']);
|
||||||
}
|
}
|
||||||
$this->tpl->assign('shaarlititle', empty($GLOBALS['title']) ? 'Shaarli': $GLOBALS['title']);
|
$this->tpl->assign('shaarlititle', empty($GLOBALS['title']) ? 'Shaarli': $GLOBALS['title']);
|
||||||
if (!empty($GLOBALS['plugins']['errors'])) {
|
if (!empty($GLOBALS['plugin_errors'])) {
|
||||||
$this->tpl->assign('plugin_errors', $GLOBALS['plugins']['errors']);
|
$this->tpl->assign('plugin_errors', $GLOBALS['plugin_errors']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($GLOBALS['plugins']['READITYOUSELF_URL'])) {
|
if (!isset($GLOBALS['plugins']['READITYOUSELF_URL'])) {
|
||||||
$GLOBALS['plugins']['errors'][] = 'Readityourself plugin error: '.
|
$GLOBALS['plugin_errors'][] = 'Readityourself plugin error: '.
|
||||||
'Please define "$GLOBALS[\'plugins\'][\'READITYOUSELF_URL\']" '.
|
'Please define "$GLOBALS[\'plugins\'][\'READITYOUSELF_URL\']" '.
|
||||||
'in "plugins/readityourself/config.php" or in your Shaarli config.php file.';
|
'in "plugins/readityourself/config.php" or in your Shaarli config.php file.';
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($GLOBALS['plugins']['WALLABAG_URL'])) {
|
if (!isset($GLOBALS['plugins']['WALLABAG_URL'])) {
|
||||||
$GLOBALS['plugins']['errors'][] = 'Wallabag plugin error: '.
|
$GLOBALS['plugin_errors'][] = 'Wallabag plugin error: '.
|
||||||
'Please define "$GLOBALS[\'plugins\'][\'WALLABAG_URL\']" '.
|
'Please define "$GLOBALS[\'plugins\'][\'WALLABAG_URL\']" '.
|
||||||
'in "plugins/wallabag/config.php" or in your Shaarli config.php file.';
|
'in "plugins/wallabag/config.php" or in your Shaarli config.php file.';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue