1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Add include_lan() to admin pages

This commit is contained in:
marj
2009-08-28 16:11:02 +00:00
parent 921e428a01
commit 201b7e20f1
41 changed files with 232 additions and 128 deletions

View File

@@ -9,23 +9,19 @@
* Administration - Database Utilities
*
* $Source: /cvs_backup/e107_0.8/e107_admin/db.php,v $
* $Revision: 1.20 $
* $Date: 2009-08-28 00:33:37 $
* $Author: e107coders $
* $Revision: 1.21 $
* $Date: 2009-08-28 16:10:59 $
* $Author: marj_nl_fr $
*
*/
require_once ("../class2.php");
require_once (e_HANDLER."form_handler.php");
$frm = new e_form();
if(!getperms('0'))
{
header('location:'.e_BASE.'index.php');
exit();
}
$e_sub_cat = 'database';
if(isset($_POST['back']))
{
@@ -33,6 +29,13 @@ if(isset($_POST['back']))
exit();
}
include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_'.e_PAGE);
$e_sub_cat = 'database';
require_once (e_HANDLER."form_handler.php");
$frm = new e_form();
require_once (e_HANDLER."message_handler.php");
$emessage = &eMessage::getInstance();