1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

Notice removal

This commit is contained in:
CaMer0n 2009-11-03 01:17:25 +00:00
parent 5986438f3d
commit 362151c3bb
2 changed files with 8 additions and 7 deletions

View File

@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/plugin_class.php,v $
| $Revision: 1.109 $
| $Date: 2009-10-30 09:13:31 $
| $Revision: 1.110 $
| $Date: 2009-11-03 01:17:01 $
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/
@ -2007,8 +2007,8 @@ class e107plugin
if(vartrue($eplug_link) && varset($eplug_link_name) && varset($eplug_link_url))
{
$ret['siteLinks']['link'][0]['@attributes']['url'] = $tp->createConstants($eplug_link_url,1);
$ret['siteLinks']['link'][0]['@attributes']['perm'] = $eplug_link_perms;
$ret['siteLinks']['link'][0]['@value'] = $eplug_link_name;
$ret['siteLinks']['link'][0]['@attributes']['perm'] = varset($eplug_link_perms);
$ret['siteLinks']['link'][0]['@value'] = varset($eplug_link_name);
}
if(vartrue($eplug_userclass) && vartrue($eplug_userclass_description))

View File

@ -9,8 +9,8 @@
* Installation file
*
* $Source: /cvs_backup/e107_0.8/install_.php,v $
* $Revision: 1.46 $
* $Date: 2009-10-21 11:08:32 $
* $Revision: 1.47 $
* $Date: 2009-11-03 01:17:25 $
* $Author: e107coders $
*
*/
@ -204,6 +204,7 @@ class e_install
if(isset($this->previous_steps['language']))
{
define("e_LANGUAGE", $this->previous_steps['language']);
include_lan(e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_admin.php");
}
}
@ -1000,7 +1001,7 @@ class e_install
}
}
}
e107::getSingleton('xmlClass')->e107Import($XMLImportfile,'add'); // Add missing core pref values
e107::getSingleton('e107plugin')->save_addon_prefs(); // save plugin addon pref-lists. eg. e_latest_list.
$tm = e107::getSingleton('themeHandler');