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

Maintenance administration - ajax implementation;

Solved number of bbcode issues (lot more to do);
e_form::bbarea method added (automated bb textarea creation);
admin_theme for blank theme
This commit is contained in:
secretr
2009-01-07 15:40:06 +00:00
parent 320da6645e
commit bd228fc99f
10 changed files with 304 additions and 114 deletions

View File

@@ -9,8 +9,8 @@
* Administration Area Authorization
*
* $Source: /cvs_backup/e107_0.8/e107_admin/auth.php,v $
* $Revision: 1.6 $
* $Date: 2008-12-10 16:59:19 $
* $Revision: 1.7 $
* $Date: 2009-01-07 15:40:06 $
* $Author: secretr $
*/
@@ -23,6 +23,11 @@ if (ADMIN)
define("ADMIN_PAGE", true);
//don't include it if it'a an AJAX call or not wanted
if(!e_AJAX_REQUEST && !defset('NO_HEADER')) require_once(e_ADMIN."header.php");
/*
* FIXME - missing $style for tablerender
* The Solution: parse_admin() without sending it to the browser if it's an ajax call
* The Problem: doubled render time for the ajax called page!!!
*/
}
else
{
@@ -239,4 +244,4 @@ class auth
}
//------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------//
?>
?>