1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-10 08:34:09 +02:00

Issue #67 - fix admin log handling of plugin-specific event titles (with language support).

This commit is contained in:
SteveD
2012-12-23 15:00:15 +00:00
parent 98741074c2
commit c11db9a05f
6 changed files with 121 additions and 27 deletions

View File

@@ -1066,7 +1066,7 @@ function update_706_to_800($type='')
if ($just_check) return update_needed('Update plugin table');
require_once(e_HANDLER.'plugin_class.php');
$ep = new e107plugin;
$ep -> update_plugins_table();
$ep -> update_plugins_table('update');
// $_pdateMessages[] = LAN_UPDATE_XX24;
// catch_error($sql);
}
@@ -1435,8 +1435,8 @@ function update_70x_to_706($type='')
// update new fields
require_once(e_HANDLER."plugin_class.php");
$ep = new e107plugin;
$ep->update_plugins_table();
$ep->save_addon_prefs();
$ep->update_plugins_table('update');
$ep->save_addon_prefs('update');
}
if (!isset($pref['displayname_maxlength']))