Zeile 3 | Zeile 3 |
---|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html
| * Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html
|
*
|
*
|
* $Id: themes.php 2154 2006-08-27 16:52:47Z Tikitiki $
| * $Id: themes.php 3694 2008-03-01 16:07:38Z Tikitiki $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 58 | Zeile 58 |
---|
$themearray = array( "name" => $db->escape_string($mybb->input['name']), "pid" => $mybb->input['pid'],
|
$themearray = array( "name" => $db->escape_string($mybb->input['name']), "pid" => $mybb->input['pid'],
|
| "css" => '', "cssbits" => '', "themebits" => '', "extracss" => '', "allowedgroups" => ''
|
); $plugins->run_hooks("admin_themes_do_add"); $db->insert_query(TABLE_PREFIX."themes", $themearray);
| ); $plugins->run_hooks("admin_themes_do_add"); $db->insert_query(TABLE_PREFIX."themes", $themearray);
|
Zeile 162 | Zeile 167 |
---|
} } }
|
} } }
|
$xml = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?".">\r\n";
| $xml = "<?xml version=\"1.0\" encoding=\"{$lang->settings['charset']}\"?".">\r\n";
|
$xml .= "<theme name=\"".$theme['name']."\" version=\"".$mybb->version_code."\">\r\n"; function xml_css_bits($css, $depth) {
| $xml .= "<theme name=\"".$theme['name']."\" version=\"".$mybb->version_code."\">\r\n"; function xml_css_bits($css, $depth) {
|
Zeile 349 | Zeile 354 |
---|
} else {
|
} else {
|
$db->query("INSERT INTO ".TABLE_PREFIX."templatesets VALUES ('', '$name Templates')");
| $db->query("INSERT INTO ".TABLE_PREFIX."templatesets (title) VALUES ('".$db->escape_string($name)." Templates')");
|
$templateset = $db->insert_id(); $tid = ""; }
| $templateset = $db->insert_id(); $tid = ""; }
|
Zeile 360 | Zeile 365 |
---|
{ foreach($templates as $template) {
|
{ foreach($templates as $template) {
|
$templatename = $template['attributes']['name'];
| $templatename = $db->escape_string($template['attributes']['name']);
|
$templatevalue = $db->escape_string($template['value']);
|
$templatevalue = $db->escape_string($template['value']);
|
$templateversion = $template['attributes']['version'];
| $templateversion = $db->escape_string($template['attributes']['version']);
|
$time = time(); $db->query("INSERT INTO ".TABLE_PREFIX."templates (title,template,sid,version,status,dateline) VALUES ('$templatename','$templatevalue','$templateset','$templateversion','','$time')"); }
| $time = time(); $db->query("INSERT INTO ".TABLE_PREFIX."templates (title,template,sid,version,status,dateline) VALUES ('$templatename','$templatevalue','$templateset','$templateversion','','$time')"); }
|
Zeile 375 | Zeile 380 |
---|
$themearray = array( "name" => $db->escape_string($name), "pid" => $mybb->input['pid'],
|
$themearray = array( "name" => $db->escape_string($name), "pid" => $mybb->input['pid'],
|
| "allowedgroups" => 'all', "css" => '', "cssbits" => '', "themebits" => '', "extracss" => ''
|
);
$db->insert_query(TABLE_PREFIX."themes", $themearray);
| );
$db->insert_query(TABLE_PREFIX."themes", $themearray);
|