|
From: James A. <th...@us...> - 2001-10-25 08:57:42
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv9304
Modified Files:
admin_styles.php
Log Message:
Couple tweeks to the file gerneration to make it a more 'proper' array.
Index: admin_styles.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_styles.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin_styles.php 2001/10/25 08:53:17 1.2
--- admin_styles.php 2001/10/25 08:57:39 1.3
***************
*** 217,223 ****
while(list($key, $val) = each($theme_rowset[$i]))
{
! if(!intval($key) && $key != "0")
{
! $theme_data .= '$' . $template_name . "[$i][$key] = \"$val\";\n";
}
}
--- 217,223 ----
while(list($key, $val) = each($theme_rowset[$i]))
{
! if(!intval($key) && $key != "0" && $key != "themes_id")
{
! $theme_data .= '$' . $template_name . "[$i]['$key'] = \"$val\";\n";
}
}
|