forked from extern/egroupware
renamed html class in admin to html_tables, as the name clashes with the class html in the api
This commit is contained in:
parent
046609d851
commit
fb1f4f9d6b
2
admin/inc/class.html.inc.php → admin/inc/class.html_tables.inc.php
Executable file → Normal file
2
admin/inc/class.html.inc.php → admin/inc/class.html_tables.inc.php
Executable file → Normal file
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
class html
|
class html_tables
|
||||||
{
|
{
|
||||||
function hash_table($rows,$head='',$obj, $frtn)
|
function hash_table($rows,$head='',$obj, $frtn)
|
||||||
{
|
{
|
@ -31,15 +31,15 @@
|
|||||||
$GLOBALS['phpgw']->redirect_link('/index.php');
|
$GLOBALS['phpgw']->redirect_link('/index.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
$_cols = $GLOBALS['HTTP_POST_VARS']['_cols'];
|
$_cols = $_POST['_cols'];
|
||||||
$nocols = $GLOBALS['HTTP_POST_VARS']['nocols'];
|
$nocols = $_POST['nocols'];
|
||||||
$_delcol = $GLOBALS['HTTP_POST_VARS']['_delcol'];
|
$_delcol = $_POST['_delcol'];
|
||||||
$layout = $GLOBALS['HTTP_POST_VARS']['layout'];
|
$layout = $_POST['layout'];
|
||||||
$editable = $GLOBALS['HTTP_GET_VARS']['editable'];
|
$editable = $_GET['editable'];
|
||||||
$modifytable = $GLOBALS['HTTP_GET_VARS']['modifytable'] ? $GLOBALS['HTTP_GET_VARS']['modifytable'] : $GLOBALS['HTTP_POST_VARS']['modifytable'];
|
$modifytable = $_GET['modifytable'] ? $_GET['modifytable'] : $_POST['modifytable'];
|
||||||
|
|
||||||
$this->bolog = CreateObject('admin.bolog',True);
|
$this->bolog = CreateObject('admin.bolog',True);
|
||||||
$this->html = createobject('admin.html');
|
$this->html = createobject('admin.html_tables');
|
||||||
$this->t = CreateObject('phpgwapi.Template',$GLOBALS['phpgw']->common->get_tpl_dir('admin'));
|
$this->t = CreateObject('phpgwapi.Template',$GLOBALS['phpgw']->common->get_tpl_dir('admin'));
|
||||||
$this->lastid = '';
|
$this->lastid = '';
|
||||||
$this->editmode = False;
|
$this->editmode = False;
|
||||||
|
Loading…
Reference in New Issue
Block a user