Vergleich admin/modules/style/themes.php - 1.8.26 - 1.8.37

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 38Zeile 38
	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 55Zeile 55
	$stylesheet = $db->fetch_array($query);

// Does the theme not exist?

	$stylesheet = $db->fetch_array($query);

// Does the theme not exist?

	if(!$stylesheet['sid'])

	if(!$stylesheet)

	{
flash_message($lang->error_invalid_stylesheet, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_stylesheet, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 65Zeile 65
	$selector_list = get_selectors_as_options($css_array, $mybb->input['selector']);
$editable_selector = $css_array[$mybb->input['selector']];
$properties = parse_css_properties($editable_selector['values']);

	$selector_list = get_selectors_as_options($css_array, $mybb->input['selector']);
$editable_selector = $css_array[$mybb->input['selector']];
$properties = parse_css_properties($editable_selector['values']);

 

foreach(array('background', 'color', 'width', 'font-family', 'font-size', 'font-style', 'font-weight', 'text-decoration') as $_p)
{
if(!isset($properties[$_p]))
{
$properties[$_p] = '';
}
}


$form = new Form("index.php?module=style-themes&action=stylesheet_properties", "post", "selector_form", 0, "", true);
echo $form->generate_hidden_field("tid", $mybb->input['tid'], array('id' => "tid"))."\n";


$form = new Form("index.php?module=style-themes&action=stylesheet_properties", "post", "selector_form", 0, "", true);
echo $form->generate_hidden_field("tid", $mybb->input['tid'], array('id' => "tid"))."\n";

Zeile 145Zeile 153
	$page->output_nav_tabs($sub_tabs, 'browse_themes');

// Process search requests

	$page->output_nav_tabs($sub_tabs, 'browse_themes');

// Process search requests

	require_once MYBB_ROOT."inc/class_xml.php";


 
	$keywords = "";

	$keywords = "";

	if($mybb->input['keywords'])

	if(!empty($mybb->input['keywords']))

	{
$keywords = "&keywords=".urlencode($mybb->input['keywords']);

	{
$keywords = "&keywords=".urlencode($mybb->input['keywords']);

	}

if($mybb->input['page'])

	}

if(!empty($mybb->input['page']))

	{
$url_page = "&page=".$mybb->get_input('page', MyBB::INPUT_INT);
}

	{
$url_page = "&page=".$mybb->get_input('page', MyBB::INPUT_INT);
}

Zeile 168Zeile 174
	// Convert to mods site version codes
$search_version = ($major_version_code/100).'x';


	// Convert to mods site version codes
$search_version = ($major_version_code/100).'x';


	$contents = fetch_remote_file("https://community.mybb.com/xmlbrowse.php?api=2&type=themes&version={$search_version}{$keywords}{$url_page}", $post_data);

	$contents = fetch_remote_file("https://community.mybb.com/xmlbrowse.php?api=2&type=themes&version={$search_version}{$keywords}{$url_page}");


if(!$contents)


if(!$contents)

	{
$page->output_inline_error($lang->error_communication_problem);
$page->output_footer();
exit;
}


	{
$page->output_inline_error($lang->error_communication_problem);
$page->output_footer();
exit;
}


	$table = new Table;
$table->construct_header($lang->themes, array('colspan' => 2));
$table->construct_header($lang->controls, array("class" => "align_center", 'width' => 125));


	$table = new Table;
$table->construct_header($lang->themes, array('colspan' => 2));
$table->construct_header($lang->controls, array("class" => "align_center", 'width' => 125));


	$parser = new XMLParser($contents);

	$parser = create_xml_parser($contents);

	$tree = $parser->get_tree();

if(!is_array($tree) || !isset($tree['results']))

	$tree = $parser->get_tree();

if(!is_array($tree) || !isset($tree['results']))

Zeile 198Zeile 204
			$only_theme = $tree['results']['result'];
unset($tree['results']['result']);
$tree['results']['result'][0] = $only_theme;

			$only_theme = $tree['results']['result'];
unset($tree['results']['result']);
$tree['results']['result'][0] = $only_theme;

		}

		}


require_once MYBB_ROOT . '/inc/class_parser.php';
$post_parser = new postParser();


require_once MYBB_ROOT . '/inc/class_parser.php';
$post_parser = new postParser();

Zeile 227Zeile 233

$search = new Form("index.php?module=style-themes&action=browse", 'post', 'search_form');
echo "<div style=\"padding-bottom: 3px; margin-top: -9px; text-align: right;\">";


$search = new Form("index.php?module=style-themes&amp;action=browse", 'post', 'search_form');
echo "<div style=\"padding-bottom: 3px; margin-top: -9px; text-align: right;\">";

	if($mybb->input['keywords'])

	if(!empty($mybb->input['keywords']))

	{
$default_class = '';
$value = htmlspecialchars_uni($mybb->input['keywords']);

	{
$default_class = '';
$value = htmlspecialchars_uni($mybb->input['keywords']);

Zeile 289Zeile 295
		$table->output("<span style=\"float: right;\"><small><a href=\"https://community.mybb.com/mods.php?action=browse&category=themes\" target=\"_blank\" rel=\"noopener\">{$lang->browse_all_themes}</a></small></span>".$lang->sprintf($lang->recommended_themes_for_mybb, $mybb->version));
}


		$table->output("<span style=\"float: right;\"><small><a href=\"https://community.mybb.com/mods.php?action=browse&category=themes\" target=\"_blank\" rel=\"noopener\">{$lang->browse_all_themes}</a></small></span>".$lang->sprintf($lang->recommended_themes_for_mybb, $mybb->version));
}


	echo "<br />".draw_admin_pagination($mybb->input['page'], 15, $tree['results']['attributes']['total'], "index.php?module=style-themes&amp;action=browse{$keywords}&amp;page={page}");




	if(!empty($tree['results']['attributes']['total']))
{
echo "<br />".draw_admin_pagination($mybb->input['page'], 15, $tree['results']['attributes']['total'], "index.php?module=style-themes&amp;action=browse{$keywords}&amp;page={page}");
}


$page->output_footer();
}


$page->output_footer();
}

Zeile 318Zeile 327
					{
case 1: // UPLOAD_ERR_INI_SIZE
$errors[] = $lang->error_uploadfailed_php1;

					{
case 1: // UPLOAD_ERR_INI_SIZE
$errors[] = $lang->error_uploadfailed_php1;

							break;

							break;

						case 2: // UPLOAD_ERR_FORM_SIZE
$errors[] = $lang->error_uploadfailed_php2;
break;

						case 2: // UPLOAD_ERR_FORM_SIZE
$errors[] = $lang->error_uploadfailed_php2;
break;

Zeile 327Zeile 336
							break;
case 6: // UPLOAD_ERR_NO_TMP_DIR
$errors[] = $lang->error_uploadfailed_php6;

							break;
case 6: // UPLOAD_ERR_NO_TMP_DIR
$errors[] = $lang->error_uploadfailed_php6;

							break;

							break;

						case 7: // UPLOAD_ERR_CANT_WRITE
$errors[] = $lang->error_uploadfailed_php7;
break;

						case 7: // UPLOAD_ERR_CANT_WRITE
$errors[] = $lang->error_uploadfailed_php7;
break;

Zeile 406Zeile 415
							break;
case -4:
$errors[] = $lang->error_theme_security_problem;

							break;
case -4:
$errors[] = $lang->error_theme_security_problem;

					}
}
}
}
}

$query = $db->simple_select("themes", "tid, name");

					}
}
}
}
}

$query = $db->simple_select("themes", "tid, name");

	while($theme = $db->fetch_array($query))
{
$themes[$theme['tid']] = $theme['name'];

	while($theme = $db->fetch_array($query))
{
$themes[$theme['tid']] = $theme['name'];

Zeile 485Zeile 494
		<dd style="margin-top: 0; margin-bottom: 0; width: 100%;" id="import_1" class="imports">
<table cellpadding="4">
<tr>

		<dd style="margin-top: 0; margin-bottom: 0; width: 100%;" id="import_1" class="imports">
<table cellpadding="4">
<tr>

					<td>'.$form->generate_text_box("url", $mybb->input['file']).'</td>

					<td>'.$form->generate_text_box("url", $mybb->get_input('file')).'</td>

				</tr>
</table></dd>
</dl>

				</tr>
</table></dd>
</dl>

Zeile 495Zeile 504

$form_container = new FormContainer($lang->import_a_theme);
$form_container->output_row($lang->import_from, $lang->import_from_desc, $actions, 'file');


$form_container = new FormContainer($lang->import_a_theme);
$form_container->output_row($lang->import_from, $lang->import_from_desc, $actions, 'file');

	$form_container->output_row($lang->parent_theme, $lang->parent_theme_desc, $form->generate_select_box('tid', $themes, $mybb->input['tid'], array('id' => 'tid')), 'tid');
$form_container->output_row($lang->new_name, $lang->new_name_desc, $form->generate_text_box('name', $mybb->input['name'], array('id' => 'name')), 'name');
$form_container->output_row($lang->advanced_options, "", $form->generate_check_box('version_compat', '1', $lang->ignore_version_compatibility, array('checked' => $mybb->input['version_compat'], 'id' => 'version_compat'))."<br /><small>{$lang->ignore_version_compat_desc}</small><br />".$form->generate_check_box('import_stylesheets', '1', $lang->import_stylesheets, array('checked' => $mybb->input['import_stylesheets'], 'id' => 'import_stylesheets'))."<br /><small>{$lang->import_stylesheets_desc}</small><br />".$form->generate_check_box('import_templates', '1', $lang->import_templates, array('checked' => $mybb->input['import_templates'], 'id' => 'import_templates'))."<br /><small>{$lang->import_templates_desc}</small>");

$form_container->end();

$buttons[] = $form->generate_submit_button($lang->import_theme);

	$form_container->output_row($lang->parent_theme, $lang->parent_theme_desc, $form->generate_select_box('tid', $themes, $mybb->get_input('tid'), array('id' => 'tid')), 'tid');
$form_container->output_row($lang->new_name, $lang->new_name_desc, $form->generate_text_box('name', $mybb->get_input('name'), array('id' => 'name')), 'name');
$form_container->output_row($lang->advanced_options, "", $form->generate_check_box('version_compat', '1', $lang->ignore_version_compatibility, array('checked' => $mybb->get_input('version_compat'), 'id' => 'version_compat'))."<br /><small>{$lang->ignore_version_compat_desc}</small><br />".$form->generate_check_box('import_stylesheets', '1', $lang->import_stylesheets, array('checked' => $mybb->get_input('import_stylesheets'), 'id' => 'import_stylesheets'))."<br /><small>{$lang->import_stylesheets_desc}</small><br />".$form->generate_check_box('import_templates', '1', $lang->import_templates, array('checked' => $mybb->get_input('import_templates'), 'id' => 'import_templates'))."<br /><small>{$lang->import_templates_desc}</small>");

$form_container->end();

$buttons[] = $form->generate_submit_button($lang->import_theme);


$form->output_submit_wrapper($buttons);



$form->output_submit_wrapper($buttons);


Zeile 516Zeile 525
	$theme = $db->fetch_array($query);

// Does the theme not exist?

	$theme = $db->fetch_array($query);

// Does the theme not exist?

	if(!$theme['tid'])

	if(!$theme)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 545Zeile 554
			$xml .= "\t\t<{$property}><![CDATA[{$value}]]></{$property}>\r\n";
}
$xml .= "\t</properties>\r\n";

			$xml .= "\t\t<{$property}><![CDATA[{$value}]]></{$property}>\r\n";
}
$xml .= "\t</properties>\r\n";





		// Fetch list of all of the stylesheets for this theme
$file_stylesheets = my_unserialize($theme['stylesheets']);

$stylesheets = array();
$inherited_load = array();

		// Fetch list of all of the stylesheets for this theme
$file_stylesheets = my_unserialize($theme['stylesheets']);

$stylesheets = array();
$inherited_load = array();





		// Now we loop through the list of stylesheets for each file
foreach($file_stylesheets as $file => $action_stylesheet)
{
if($file == 'inherited' || !is_array($action_stylesheet))

		// Now we loop through the list of stylesheets for each file
foreach($file_stylesheets as $file => $action_stylesheet)
{
if($file == 'inherited' || !is_array($action_stylesheet))

			{

			{

				continue;
}

foreach($action_stylesheet as $action => $style)

				continue;
}

foreach($action_stylesheet as $action => $style)

			{

			{

				foreach($style as $stylesheet)
{
$stylesheets[$stylesheet]['applied_to'][$file][] = $action;

				foreach($style as $stylesheet)
{
$stylesheets[$stylesheet]['applied_to'][$file][] = $action;

					if(is_array($file_stylesheets['inherited'][$file."_".$action]) && in_array($stylesheet, array_keys($file_stylesheets['inherited'][$file."_".$action])))





$array = &$file_stylesheets['inherited'][$file."_".$action];

if(is_array($array) && array_key_exists($stylesheet, $array))

					{
$stylesheets[$stylesheet]['inherited'] = $file_stylesheets['inherited'][$file."_".$action];
foreach($file_stylesheets['inherited'][$file."_".$action] as $value)

					{
$stylesheets[$stylesheet]['inherited'] = $file_stylesheets['inherited'][$file."_".$action];
foreach($file_stylesheets['inherited'][$file."_".$action] as $value)

Zeile 587Zeile 599
			while($inherited_theme = $db->fetch_array($query))
{
$inherited_themes[$inherited_theme['tid']] = $inherited_theme['name'];

			while($inherited_theme = $db->fetch_array($query))
{
$inherited_themes[$inherited_theme['tid']] = $inherited_theme['name'];

			}


			}


			$query = $db->simple_select("themestylesheets", "*", "tid IN (".implode(",", $inherited_load).")", array('order_by' => 'tid', 'order_dir' => 'desc'));
while($theme_stylesheet = $db->fetch_array($query))
{

			$query = $db->simple_select("themestylesheets", "*", "tid IN (".implode(",", $inherited_load).")", array('order_by' => 'tid', 'order_dir' => 'desc'));
while($theme_stylesheet = $db->fetch_array($query))
{

				if(!$theme_stylesheets[$theme_stylesheet['cachefile']])

				if(empty($theme_stylesheets[$theme_stylesheet['cachefile']]))

				{
$theme_stylesheets[$theme_stylesheet['cachefile']] = $theme_stylesheet;
$theme_stylesheets[$theme_stylesheet['sid']] = $theme_stylesheet['cachefile'];
}
}
}

				{
$theme_stylesheets[$theme_stylesheet['cachefile']] = $theme_stylesheet;
$theme_stylesheets[$theme_stylesheet['sid']] = $theme_stylesheet['cachefile'];
}
}
}





		$xml .= "\t<stylesheets>\r\n";
foreach($stylesheets as $filename => $style)
{
if(strpos($filename, 'css.php?stylesheet=') !== false)

		$xml .= "\t<stylesheets>\r\n";
foreach($stylesheets as $filename => $style)
{
if(strpos($filename, 'css.php?stylesheet=') !== false)

			{

			{

				$style['sid'] = (int)str_replace('css.php?stylesheet=', '', $filename);
$filename = $theme_stylesheets[$style['sid']];

				$style['sid'] = (int)str_replace('css.php?stylesheet=', '', $filename);
$filename = $theme_stylesheets[$style['sid']];

			}
else

			}
else

			{
$filename = basename($filename);

			{
$filename = basename($filename);

				$style['sid'] = $theme_stylesheets[$filename]['sid'];
}

$style['tid'] = $theme_stylesheets[$filename]['tid'];

















if(isset($theme_stylesheets[$filename]['sid']))
{
$style['sid'] = $theme_stylesheets[$filename]['sid'];
}
else
{
$style['sid'] = null;
}
}

if(isset($theme_stylesheets[$filename]['tid']))
{
$style['tid'] = $theme_stylesheets[$filename]['tid'];
}
else
{
$style['tid'] = null;
}


if($mybb->input['custom_theme'] == 1 && $style['tid'] != $mybb->input['tid'])
{
continue;


if($mybb->input['custom_theme'] == 1 && $style['tid'] != $mybb->input['tid'])
{
continue;

			}

// Has the file on the file system been modified?
resync_stylesheet($theme_stylesheets[$filename]);

$style['sid'] = $theme_stylesheets[$filename]['sid'];

$attachedto = $theme_stylesheets[$filename]['attachedto'];
$stylesheet = $theme_stylesheets[$filename]['stylesheet'];
$stylesheet = str_replace(']]>', ']]]]><![CDATA[>', $stylesheet);

if($attachedto)

			}

if(isset($theme_stylesheets[$filename]))










			{

			{

				$attachedto = "attachedto=\"{$attachedto}\" ";
}

$filename = $theme_stylesheets[$filename]['name'];

				// Has the file on the file system been modified?
resync_stylesheet($theme_stylesheets[$filename]);







			$xml .= "\t\t<stylesheet name=\"{$filename}\" {$attachedto}version=\"{$mybb->version_code}\"><![CDATA[{$stylesheet}]]>\r\n\t\t</stylesheet>\r\n";















				$style['sid'] = $theme_stylesheets[$filename]['sid'];

$attachedto = $theme_stylesheets[$filename]['attachedto'];
$stylesheet = $theme_stylesheets[$filename]['stylesheet'];
$stylesheet = str_replace(']]>', ']]]]><![CDATA[>', $stylesheet);

if($attachedto)
{
$attachedto = "attachedto=\"{$attachedto}\" ";
}

$filename = $theme_stylesheets[$filename]['name'];

$xml .= "\t\t<stylesheet name=\"{$filename}\" {$attachedto}version=\"{$mybb->version_code}\"><![CDATA[{$stylesheet}]]>\r\n\t\t</stylesheet>\r\n";
}


}
$xml .= "\t</stylesheets>\r\n";


}
$xml .= "\t</stylesheets>\r\n";

Zeile 684Zeile 714
	$sub_tabs['add_stylesheet'] = array(
'title' => $lang->add_stylesheet,
'link' => "index.php?module=style-themes&amp;action=add_stylesheet&amp;tid={$mybb->input['tid']}",

	$sub_tabs['add_stylesheet'] = array(
'title' => $lang->add_stylesheet,
'link' => "index.php?module=style-themes&amp;action=add_stylesheet&amp;tid={$mybb->input['tid']}",

	);

	);


$sub_tabs['export_theme'] = array(
'title' => $lang->export_theme,
'link' => "index.php?module=style-themes&amp;action=export&amp;tid={$mybb->input['tid']}",
'description' => $lang->export_theme_desc


$sub_tabs['export_theme'] = array(
'title' => $lang->export_theme,
'link' => "index.php?module=style-themes&amp;action=export&amp;tid={$mybb->input['tid']}",
'description' => $lang->export_theme_desc

	);

	);


$sub_tabs['duplicate_theme'] = array(
'title' => $lang->duplicate_theme,


$sub_tabs['duplicate_theme'] = array(
'title' => $lang->duplicate_theme,

Zeile 709Zeile 739
	echo $form->generate_hidden_field("tid", $theme['tid']);

$form_container = new FormContainer($lang->export_theme.": ".htmlspecialchars_uni($theme['name']));

	echo $form->generate_hidden_field("tid", $theme['tid']);

$form_container = new FormContainer($lang->export_theme.": ".htmlspecialchars_uni($theme['name']));

	$form_container->output_row($lang->include_custom_only, $lang->include_custom_only_desc, $form->generate_yes_no_radio('custom_theme', $mybb->input['custom_theme']), 'custom_theme');
$form_container->output_row($lang->include_templates, $lang->include_templates_desc, $form->generate_yes_no_radio('include_templates', $mybb->input['include_templates']), 'include_templates');

	$form_container->output_row($lang->include_custom_only, $lang->include_custom_only_desc, $form->generate_yes_no_radio('custom_theme', $mybb->get_input('custom_theme')), 'custom_theme');
$form_container->output_row($lang->include_templates, $lang->include_templates_desc, $form->generate_yes_no_radio('include_templates', $mybb->get_input('include_templates')), 'include_templates');


$form_container->end();


$form_container->end();





	$buttons[] = $form->generate_submit_button($lang->export_theme);

	$buttons[] = $form->generate_submit_button($lang->export_theme);





	$form->output_submit_wrapper($buttons);

$form->end();

	$form->output_submit_wrapper($buttons);

$form->end();





	$page->output_footer();
}


	$page->output_footer();
}


Zeile 729Zeile 759
	$theme = $db->fetch_array($query);

// Does the theme not exist?

	$theme = $db->fetch_array($query);

// Does the theme not exist?

	if(!$theme['tid'])
{

	if(!$theme)
{

		flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");
}

$plugins->run_hooks("admin_style_themes_duplicate");

		flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");
}

$plugins->run_hooks("admin_style_themes_duplicate");





	if($mybb->request_method == "post")
{
if($mybb->input['name'] == "")

	if($mybb->request_method == "post")
{
if($mybb->input['name'] == "")

Zeile 759Zeile 789
			$properties = my_unserialize($theme['properties']);
$sid = (int)$properties['templateset'];
$nprops = null;

			$properties = my_unserialize($theme['properties']);
$sid = (int)$properties['templateset'];
$nprops = null;

			if($mybb->input['duplicate_templates'])

			if($mybb->get_input('duplicate_templates'))

			{

			{

				$nsid = $db->insert_query("templatesets", array('title' => $db->escape_string($mybb->input['name'])." Templates"));

				$nsid = $db->insert_query("templatesets", array('title' => $db->escape_string($mybb->get_input('name'))." Templates"));


// Copy all old Templates to our new templateset
$query = $db->simple_select("templates", "*", "sid='{$sid}'");


// Copy all old Templates to our new templateset
$query = $db->simple_select("templates", "*", "sid='{$sid}'");

Zeile 774Zeile 804
						"version" => $db->escape_string($template['version']),
"dateline" => TIME_NOW
);

						"version" => $db->escape_string($template['version']),
"dateline" => TIME_NOW
);





					if($db->engine == "pgsql")
{
echo " ";
flush();

					if($db->engine == "pgsql")
{
echo " ";
flush();

					}

					}


$db->insert_query("templates", $insert);
}


$db->insert_query("templates", $insert);
}

Zeile 788Zeile 818
				foreach($properties as $property => $value)
{
if($property == "inherited")

				foreach($properties as $property => $value)
{
if($property == "inherited")

					{

					{

						continue;
}

$nprops[$property] = $value;

						continue;
}

$nprops[$property] = $value;

					if($properties['inherited'][$property])
{

					if(!empty($properties['inherited'][$property]))
{

						$nprops['inherited'][$property] = $properties['inherited'][$property];
}
else

						$nprops['inherited'][$property] = $properties['inherited'][$property];
}
else

Zeile 804Zeile 834
				}
$nprops['templateset'] = $nsid;
}

				}
$nprops['templateset'] = $nsid;
}

			$tid = build_new_theme($mybb->input['name'], $nprops, $theme['tid']);

			$tid = build_new_theme($mybb->get_input('name'), $nprops, $theme['tid']);


update_theme_stylesheet_list($tid);

$plugins->run_hooks("admin_style_themes_duplicate_commit");


update_theme_stylesheet_list($tid);

$plugins->run_hooks("admin_style_themes_duplicate_commit");





			// Log admin action
log_admin_action($tid, $theme['tid']);

			// Log admin action
log_admin_action($tid, $theme['tid']);





			flash_message($lang->success_duplicated_theme, 'success');

			flash_message($lang->success_duplicated_theme, 'success');

			admin_redirect("index.php?module=style-themes&action=edit&tid=".$tid);
}
}

$page->add_breadcrumb_item(htmlspecialchars_uni($theme['name']), "index.php?module=style-themes&amp;action=edit&amp;tid={$mybb->input['tid']}");


			admin_redirect("index.php?module=style-themes&action=edit&tid=".$tid);
}
}

$page->add_breadcrumb_item(htmlspecialchars_uni($theme['name']), "index.php?module=style-themes&amp;action=edit&amp;tid={$mybb->get_input('tid')}");


	$page->add_breadcrumb_item($lang->duplicate_theme, "index.php?module=style-themes&amp;action=duplicate&amp;tid={$theme['tid']}");

$page->output_header("{$lang->themes} - {$lang->duplicate_theme}");

$sub_tabs['edit_stylesheets'] = array(
'title' => $lang->edit_stylesheets,

	$page->add_breadcrumb_item($lang->duplicate_theme, "index.php?module=style-themes&amp;action=duplicate&amp;tid={$theme['tid']}");

$page->output_header("{$lang->themes} - {$lang->duplicate_theme}");

$sub_tabs['edit_stylesheets'] = array(
'title' => $lang->edit_stylesheets,

		'link' => "index.php?module=style-themes&amp;action=edit&amp;tid={$mybb->input['tid']}",
);

		'link' => "index.php?module=style-themes&amp;action=edit&amp;tid={$mybb->get_input('tid')}",
);


$sub_tabs['add_stylesheet'] = array(
'title' => $lang->add_stylesheet,


$sub_tabs['add_stylesheet'] = array(
'title' => $lang->add_stylesheet,

		'link' => "index.php?module=style-themes&amp;action=add_stylesheet&amp;tid={$mybb->input['tid']}",
);

		'link' => "index.php?module=style-themes&amp;action=add_stylesheet&amp;tid={$mybb->get_input('tid')}",
);


$sub_tabs['export_theme'] = array(
'title' => $lang->export_theme,


$sub_tabs['export_theme'] = array(
'title' => $lang->export_theme,

		'link' => "index.php?module=style-themes&amp;action=export&amp;tid={$mybb->input['tid']}",

		'link' => "index.php?module=style-themes&amp;action=export&amp;tid={$mybb->get_input('tid')}",

		'description' => $lang->export_theme_desc

		'description' => $lang->export_theme_desc

	);

	);


$sub_tabs['duplicate_theme'] = array(
'title' => $lang->duplicate_theme,


$sub_tabs['duplicate_theme'] = array(
'title' => $lang->duplicate_theme,

		'link' => "index.php?module=style-themes&amp;action=duplicate&amp;tid={$mybb->input['tid']}",

		'link' => "index.php?module=style-themes&amp;action=duplicate&amp;tid={$mybb->get_input('tid')}",

		'description' => $lang->duplicate_theme_desc
);


		'description' => $lang->duplicate_theme_desc
);


Zeile 860Zeile 890
	$form = new Form("index.php?module=style-themes&amp;action=duplicate&amp;tid={$theme['tid']}", "post");

$form_container = new FormContainer($lang->duplicate_theme);

	$form = new Form("index.php?module=style-themes&amp;action=duplicate&amp;tid={$theme['tid']}", "post");

$form_container = new FormContainer($lang->duplicate_theme);

	$form_container->output_row($lang->new_name, $lang->new_name_duplicate_desc, $form->generate_text_box('name', $mybb->input['name'], array('id' => 'name')), 'name');
$form_container->output_row($lang->advanced_options, "", $form->generate_check_box('duplicate_templates', '1', $lang->duplicate_templates, array('checked' => $mybb->input['duplicate_templates'], 'id' => 'duplicate_templates'))."<br /><small>{$lang->duplicate_templates_desc}</small>");


	$form_container->output_row($lang->new_name, $lang->new_name_duplicate_desc, $form->generate_text_box('name', $mybb->get_input('name'), array('id' => 'name')), 'name');
$form_container->output_row($lang->advanced_options, "", $form->generate_check_box('duplicate_templates', '1', $lang->duplicate_templates, array('checked' => $mybb->get_input('duplicate_templates'), 'id' => 'duplicate_templates'))."<br /><small>{$lang->duplicate_templates_desc}</small>");


	$form_container->end();

	$form_container->end();





	$buttons[] = $form->generate_submit_button($lang->duplicate_theme);

	$buttons[] = $form->generate_submit_button($lang->duplicate_theme);


$form->output_submit_wrapper($buttons);


$form->output_submit_wrapper($buttons);


$form->end();



$form->end();


Zeile 891Zeile 921
			$errors[] = $lang->error_missing_name;
}
else if(in_array($mybb->input['name'], $themes))

			$errors[] = $lang->error_missing_name;
}
else if(in_array($mybb->input['name'], $themes))

		{

		{

			$errors[] = $lang->error_theme_already_exists;
}


			$errors[] = $lang->error_theme_already_exists;
}


Zeile 906Zeile 936

flash_message($lang->success_theme_created, 'success');
admin_redirect("index.php?module=style-themes&action=edit&tid=".$tid);


flash_message($lang->success_theme_created, 'success');
admin_redirect("index.php?module=style-themes&action=edit&tid=".$tid);

		}
}

$page->add_breadcrumb_item($lang->create_new_theme, "index.php?module=style-themes&amp;action=add");


		}
}

$page->add_breadcrumb_item($lang->create_new_theme, "index.php?module=style-themes&amp;action=add");


	$page->output_header("{$lang->themes} - {$lang->create_new_theme}");

$page->output_nav_tabs($sub_tabs, 'create_theme');

if($errors)

	$page->output_header("{$lang->themes} - {$lang->create_new_theme}");

$page->output_nav_tabs($sub_tabs, 'create_theme');

if($errors)

	{

	{

		$page->output_inline_error($errors);

		$page->output_inline_error($errors);

	}

$form = new Form("index.php?module=style-themes&amp;action=add", "post");


	}

$form = new Form("index.php?module=style-themes&amp;action=add", "post");


	$form_container = new FormContainer($lang->create_a_theme);

	$form_container = new FormContainer($lang->create_a_theme);

	$form_container->output_row($lang->name, $lang->name_desc, $form->generate_text_box('name', $mybb->input['name'], array('id' => 'name')), 'name');
$form_container->output_row($lang->parent_theme, $lang->parent_theme_desc, $form->generate_select_box('tid', $themes, $mybb->input['tid'], array('id' => 'tid')), 'tid');

	$form_container->output_row($lang->name, $lang->name_desc, $form->generate_text_box('name', $mybb->get_input('name'), array('id' => 'name')), 'name');
$form_container->output_row($lang->parent_theme, $lang->parent_theme_desc, $form->generate_select_box('tid', $themes, $mybb->get_input('tid'), array('id' => 'tid')), 'tid');


$form_container->end();



$form_container->end();


Zeile 933Zeile 963
	$form->output_submit_wrapper($buttons);

$form->end();

	$form->output_submit_wrapper($buttons);

$form->end();





	$page->output_footer();
}


	$page->output_footer();
}


Zeile 943Zeile 973
	$theme = $db->fetch_array($query);

// Does the theme not exist? or are we trying to delete the master?

	$theme = $db->fetch_array($query);

// Does the theme not exist? or are we trying to delete the master?

	if(!$theme['tid'] || $theme['tid'] == 1)
{

	if(!$theme || $theme['tid'] == 1)
{

		flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");
}


		flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");
}


	// User clicked no
if($mybb->input['no'])
{
admin_redirect("index.php?module=style-themes");
}

$plugins->run_hooks("admin_style_themes_delete");


	// User clicked no
if($mybb->get_input('no'))
{
admin_redirect("index.php?module=style-themes");
}

$plugins->run_hooks("admin_style_themes_delete");


	if($mybb->request_method == "post")
{
$inherited_theme_cache = array();

	if($mybb->request_method == "post")
{
$inherited_theme_cache = array();

Zeile 966Zeile 996
		{
$theme2['stylesheets'] = my_unserialize($theme2['stylesheets']);


		{
$theme2['stylesheets'] = my_unserialize($theme2['stylesheets']);


			if(!$theme2['stylesheets']['inherited'])

			if(empty($theme2['stylesheets']['inherited']))

			{
continue;
}

$inherited_theme_cache[$theme2['tid']] = $theme2['stylesheets']['inherited'];

			{
continue;
}

$inherited_theme_cache[$theme2['tid']] = $theme2['stylesheets']['inherited'];

		}


		}


		$inherited_stylesheets = false;

// Are any other themes relying on stylesheets from this theme? Get a list and show an error
foreach($inherited_theme_cache as $tid => $inherited)

		$inherited_stylesheets = false;

// Are any other themes relying on stylesheets from this theme? Get a list and show an error
foreach($inherited_theme_cache as $tid => $inherited)

		{

		{

			foreach($inherited as $file => $value)
{
foreach($value as $filepath => $val)

			foreach($inherited as $file => $value)
{
foreach($value as $filepath => $val)

Zeile 989Zeile 1019
					}
}
}

					}
}
}

		}

		}


if($inherited_stylesheets == true)
{


if($inherited_stylesheets == true)
{

Zeile 999Zeile 1029

$query = $db->simple_select("themestylesheets", "cachefile", "tid='{$theme['tid']}'");
while($cachefile = $db->fetch_array($query))


$query = $db->simple_select("themestylesheets", "cachefile", "tid='{$theme['tid']}'");
while($cachefile = $db->fetch_array($query))

		{

		{

			@unlink(MYBB_ROOT."cache/themes/theme{$theme['tid']}/{$cachefile['cachefile']}");

$filename_min = str_replace('.css', '.min.css', $cachefile['cachefile']);
@unlink(MYBB_ROOT."cache/themes/theme{$theme['tid']}/{$filename_min}");

			@unlink(MYBB_ROOT."cache/themes/theme{$theme['tid']}/{$cachefile['cachefile']}");

$filename_min = str_replace('.css', '.min.css', $cachefile['cachefile']);
@unlink(MYBB_ROOT."cache/themes/theme{$theme['tid']}/{$filename_min}");

		}
@unlink(MYBB_ROOT."cache/themes/theme{$theme['tid']}/index.html");

$db->delete_query("themestylesheets", "tid='{$theme['tid']}'");






		}

$path = MYBB_ROOT."cache/themes/theme{$theme['tid']}/index.html";
if(file_exists($path))
{
@unlink($path);
}

$db->delete_query("themestylesheets", "tid='{$theme['tid']}'");


// Update the CSS file list for this theme
update_theme_stylesheet_list($theme['tid'], $theme, true);

$db->update_query("users", array('style' => 0), "style='{$theme['tid']}'");



// Update the CSS file list for this theme
update_theme_stylesheet_list($theme['tid'], $theme, true);

$db->update_query("users", array('style' => 0), "style='{$theme['tid']}'");


		@rmdir(MYBB_ROOT."cache/themes/theme{$theme['tid']}/");





		$path = MYBB_ROOT."cache/themes/theme{$theme['tid']}/";
if(file_exists($path))
{
@rmdir($path);
}


$children = (array)make_child_theme_list($theme['tid']);
$child_tids = array();


$children = (array)make_child_theme_list($theme['tid']);
$child_tids = array();

Zeile 1054Zeile 1093
	$theme = $db->fetch_array($query);

// Does the theme not exist?

	$theme = $db->fetch_array($query);

// Does the theme not exist?

	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 1066Zeile 1105
	{
$properties = array(
'templateset' => $mybb->get_input('templateset', MyBB::INPUT_INT),

	{
$properties = array(
'templateset' => $mybb->get_input('templateset', MyBB::INPUT_INT),

			'editortheme' => $mybb->input['editortheme'],
'imgdir' => $mybb->input['imgdir'],
'logo' => $mybb->input['logo'],

			'editortheme' => $mybb->get_input('editortheme'),
'imgdir' => $mybb->get_input('imgdir'),
'logo' => $mybb->get_input('logo'),

			'tablespace' => $mybb->get_input('tablespace', MyBB::INPUT_INT),
'borderwidth' => $mybb->get_input('borderwidth', MyBB::INPUT_INT),

			'tablespace' => $mybb->get_input('tablespace', MyBB::INPUT_INT),
'borderwidth' => $mybb->get_input('borderwidth', MyBB::INPUT_INT),

			'color' => $mybb->input['color']

			'color' => $mybb->get_input('color')

		);

if($properties['color'] == 'none')

		);

if($properties['color'] == 'none')

Zeile 1086Zeile 1125
			foreach($colors as $color)
{
$color = trim($color);

			foreach($colors as $color)
{
$color = trim($color);

				if(preg_match('/^[a-z0-9]+={1}[a-z0-9]+$/i', $color))
{

				if(preg_match('(^((\p{L}|\p{Nd}|_)+)={1}((\p{L}|\p{Nd}|_)+)$)u', $color))
{

					$color = explode("=", $color);
$properties['colors'][$color[0]] = $color[1];
}

					$color = explode("=", $color);
$properties['colors'][$color[0]] = $color[1];
}

Zeile 1130Zeile 1169
		if(is_array($allowedgroups))
{
$allowedgroups = implode(",", $allowedgroups);

		if(is_array($allowedgroups))
{
$allowedgroups = implode(",", $allowedgroups);

		}


		}


		$update_array = array(
'name' => $db->escape_string($mybb->input['name']),
'pid' => $mybb->get_input('pid', MyBB::INPUT_INT),

		$update_array = array(
'name' => $db->escape_string($mybb->input['name']),
'pid' => $mybb->get_input('pid', MyBB::INPUT_INT),

Zeile 1139Zeile 1178
			'properties' => $db->escape_string(my_serialize($properties))
);


			'properties' => $db->escape_string(my_serialize($properties))
);


		// perform validation

		// Perform validation

		if(!$update_array['name'])
{
$errors[] = $lang->error_missing_name;

		if(!$update_array['name'])
{
$errors[] = $lang->error_missing_name;

Zeile 1217Zeile 1256
		}

foreach($action_stylesheet as $action => $style)

		}

foreach($action_stylesheet as $action => $style)

		{

		{

			foreach($style as $stylesheet)
{
$stylesheets[$stylesheet]['applied_to'][$file][] = $action;

			foreach($style as $stylesheet)
{
$stylesheets[$stylesheet]['applied_to'][$file][] = $action;

				if(is_array($file_stylesheets['inherited'][$file."_".$action]) && in_array($stylesheet, array_keys($file_stylesheets['inherited'][$file."_".$action])))

				if(isset($file_stylesheets['inherited'][$file."_".$action]) && is_array($file_stylesheets['inherited'][$file."_".$action]) && in_array($stylesheet, array_keys($file_stylesheets['inherited'][$file."_".$action])))

				{
$stylesheets[$stylesheet]['inherited'] = $file_stylesheets['inherited'][$file."_".$action];
foreach($file_stylesheets['inherited'][$file."_".$action] as $value)

				{
$stylesheets[$stylesheet]['inherited'] = $file_stylesheets['inherited'][$file."_".$action];
foreach($file_stylesheets['inherited'][$file."_".$action] as $value)

Zeile 1229Zeile 1268
						$inherited_load[] = $value;
}
}

						$inherited_load[] = $value;
}
}

			}

			}

		}
}

		}
}





	$inherited_load[] = $mybb->input['tid'];

	$inherited_load[] = $mybb->input['tid'];

	$inherited_load = array_unique($inherited_load);


	$inherited_load = array_unique($inherited_load);


	$inherited_themes = $theme_stylesheets = array();
if(count($inherited_load) > 0)
{

	$inherited_themes = $theme_stylesheets = array();
if(count($inherited_load) > 0)
{

Zeile 1261Zeile 1300
	if($mybb->request_method == "post" && $mybb->input['do'] == "save_orders")
{
if(!is_array($mybb->input['disporder']))

	if($mybb->request_method == "post" && $mybb->input['do'] == "save_orders")
{
if(!is_array($mybb->input['disporder']))

		{

		{

			// Error out
flash_message($lang->error_no_display_order, 'error');
admin_redirect("index.php?module=style-themes&action=edit&tid={$theme['tid']}");

			// Error out
flash_message($lang->error_no_display_order, 'error');
admin_redirect("index.php?module=style-themes&action=edit&tid={$theme['tid']}");

Zeile 1295Zeile 1334
			$cache->update_default_theme();
}


			$cache->update_default_theme();
}


		// normalize for consistency

		// Normalize for consistency

		update_theme_stylesheet_list($theme['tid'], false, true);

flash_message($lang->success_stylesheet_order_updated, 'success');

		update_theme_stylesheet_list($theme['tid'], false, true);

flash_message($lang->success_stylesheet_order_updated, 'success');

Zeile 1347Zeile 1386
	foreach($properties['disporder'] as $style_name => $order)
{
foreach($stylesheets as $filename => $style)

	foreach($properties['disporder'] as $style_name => $order)
{
foreach($stylesheets as $filename => $style)

		{

		{

			if(strpos($filename, 'css.php?stylesheet=') !== false)
{
$style['sid'] = (int)str_replace('css.php?stylesheet=', '', $filename);
$filename = $theme_stylesheets[$style['sid']];

			if(strpos($filename, 'css.php?stylesheet=') !== false)
{
$style['sid'] = (int)str_replace('css.php?stylesheet=', '', $filename);
$filename = $theme_stylesheets[$style['sid']];

			}


			}


			if(basename($filename) != $style_name)
{
continue;
}

			if(basename($filename) != $style_name)
{
continue;
}





			$ordered_stylesheets[$filename] = $style;
}
}

			$ordered_stylesheets[$filename] = $style;
}
}

Zeile 1383Zeile 1422

$inherited = "";
$inherited_ary = array();


$inherited = "";
$inherited_ary = array();

		if(is_array($style['inherited']))

		if(isset($style['inherited']) && is_array($style['inherited']))

		{
foreach($style['inherited'] as $tid)
{
if($inherited_themes[$tid])
{
$inherited_ary[$tid] = $inherited_themes[$tid];

		{
foreach($style['inherited'] as $tid)
{
if($inherited_themes[$tid])
{
$inherited_ary[$tid] = $inherited_themes[$tid];

				}

				}

			}
}


			}
}


Zeile 1407Zeile 1446
				{
$sep = " {$lang->and} ";
}

				{
$sep = " {$lang->and} ";
}


$inherited .= $sep.$file;


$inherited .= $sep.htmlspecialchars_uni($file);

				$sep = $lang->comma;

++$count;

				$sep = $lang->comma;

++$count;

Zeile 1424Zeile 1463
			$count = 0;
$sep = " ";
$name = "";

			$count = 0;
$sep = " ";
$name = "";





			$colors = array();


			$colors = array();


			if(!is_array($properties['colors']))

			if(!isset($properties['colors']) || !is_array($properties['colors']))

			{
$properties['colors'] = array();
}

			{
$properties['colors'] = array();
}

Zeile 1435Zeile 1474
			foreach($style['applied_to'] as $name => $actions)
{
if(!$name)

			foreach($style['applied_to'] as $name => $actions)
{
if(!$name)

				{

				{

					continue;
}


					continue;
}


Zeile 1456Zeile 1495
				$name = htmlspecialchars_uni($name);

if($actions[0] != "global")

				$name = htmlspecialchars_uni($name);

if($actions[0] != "global")

				{

				{

					$actions = array_map('htmlspecialchars_uni', $actions);

$name = "{$name} ({$lang->actions}: ".implode(',', $actions).")";

					$actions = array_map('htmlspecialchars_uni', $actions);

$name = "{$name} ({$lang->actions}: ".implode(',', $actions).")";

Zeile 1467Zeile 1506
					$sep = " {$lang->and} ";
}
$attached_to .= $sep.$name;

					$sep = " {$lang->and} ";
}
$attached_to .= $sep.$name;





				$sep = $lang->comma;
}


				$sep = $lang->comma;
}


Zeile 1477Zeile 1516
			}

if(count($colors))

			}

if(count($colors))

			{

			{

				// Attached to color instead of files.
$count = 1;
$color_list = $sep = '';

				// Attached to color instead of files.
$count = 1;
$color_list = $sep = '';

Zeile 1519Zeile 1558
			$popup->add_item($lang->delete_revert, "index.php?module=style-themes&amp;action=delete_stylesheet&amp;file=".htmlspecialchars_uni($filename)."&amp;tid={$theme['tid']}&amp;my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_stylesheet_deletion}')");
}


			$popup->add_item($lang->delete_revert, "index.php?module=style-themes&amp;action=delete_stylesheet&amp;file=".htmlspecialchars_uni($filename)."&amp;tid={$theme['tid']}&amp;my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_stylesheet_deletion}')");
}


		$table->construct_cell("<strong><a href=\"index.php?module=style-themes&amp;action=edit_stylesheet&amp;file=".htmlspecialchars_uni($filename)."&amp;tid={$theme['tid']}\">{$filename}</a></strong>{$inherited}<br />{$attached_to}");

		$table->construct_cell("<strong><a href=\"index.php?module=style-themes&amp;action=edit_stylesheet&amp;file=".htmlspecialchars_uni($filename)."&amp;tid={$theme['tid']}\">".htmlspecialchars_uni($filename)."</a></strong>{$inherited}<br />{$attached_to}");

		$table->construct_cell($form->generate_numeric_field("disporder[{$theme_stylesheets[$filename]['sid']}]", $properties['disporder'][$filename], array('style' => 'width: 80%; text-align: center;', 'min' => 0)), array("class" => "align_center"));
$table->construct_cell($popup->fetch(), array("class" => "align_center"));
$table->construct_row();

		$table->construct_cell($form->generate_numeric_field("disporder[{$theme_stylesheets[$filename]['sid']}]", $properties['disporder'][$filename], array('style' => 'width: 80%; text-align: center;', 'min' => 0)), array("class" => "align_center"));
$table->construct_cell($popup->fetch(), array("class" => "align_center"));
$table->construct_row();

Zeile 1563Zeile 1602
		$options[(int)$templateset['sid']] = $templateset['title'];
}
$form_container->output_row($lang->template_set." <em>*</em>", $lang->template_set_desc, $form->generate_select_box('templateset', $options, $properties['templateset'], array('id' => 'templateset')), 'templateset');

		$options[(int)$templateset['sid']] = $templateset['title'];
}
$form_container->output_row($lang->template_set." <em>*</em>", $lang->template_set_desc, $form->generate_select_box('templateset', $options, $properties['templateset'], array('id' => 'templateset')), 'templateset');





	$options = array();
$editor_theme_root = MYBB_ROOT."jscripts/sceditor/themes/";
if($dh = @opendir($editor_theme_root))
{
while($dir = readdir($dh))

	$options = array();
$editor_theme_root = MYBB_ROOT."jscripts/sceditor/themes/";
if($dh = @opendir($editor_theme_root))
{
while($dir = readdir($dh))

		{

		{

			if($dir == ".svn" || $dir == "." || $dir == ".." || is_dir($editor_theme_root.$dir) || get_extension($editor_theme_root.$dir) != 'css')
{
continue;

			if($dir == ".svn" || $dir == "." || $dir == ".." || is_dir($editor_theme_root.$dir) || get_extension($editor_theme_root.$dir) != 'css')
{
continue;

Zeile 1589Zeile 1628

$form_container = new FormContainer($lang->colors_manage);



$form_container = new FormContainer($lang->colors_manage);


	if(!$properties['colors'] || !is_array($properties['colors']))

	if(empty($properties['colors']) || !is_array($properties['colors']))

	{
$color_setting = $lang->colors_no_color_setting;
}

	{
$color_setting = $lang->colors_no_color_setting;
}

Zeile 1597Zeile 1636
	{
$colors = array('none' => $lang->colors_please_select);
$colors = array_merge($colors, $properties['colors']);

	{
$colors = array('none' => $lang->colors_please_select);
$colors = array_merge($colors, $properties['colors']);








if(!isset($properties['color']))
{
$properties['color'] = 'none';
}

		$color_setting = $form->generate_select_box('color', $colors, $properties['color'], array('class' => "select\" style=\"width: 200px;"));

$mybb->input['colors'] = '';

		$color_setting = $form->generate_select_box('color', $colors, $properties['color'], array('class' => "select\" style=\"width: 200px;"));

$mybb->input['colors'] = '';

Zeile 1606Zeile 1649
			if($mybb->input['colors'])
{
$mybb->input['colors'] .= "\n";

			if($mybb->input['colors'])
{
$mybb->input['colors'] .= "\n";

			}


			}


			$mybb->input['colors'] .= "{$key}={$color}";
}
}

$form_container->output_row($lang->colors_setting, $lang->colors_setting_desc, $color_setting, 'color');

			$mybb->input['colors'] .= "{$key}={$color}";
}
}

$form_container->output_row($lang->colors_setting, $lang->colors_setting_desc, $color_setting, 'color');

	$form_container->output_row($lang->colors_add, $lang->colors_add_desc, $form->generate_text_area('colors', $mybb->input['colors'], array('style' => 'width: 200px;', 'rows' => '5')));

	$form_container->output_row($lang->colors_add, $lang->colors_add_desc, $form->generate_text_area('colors', $mybb->get_input('colors'), array('style' => 'width: 200px;', 'rows' => '5')));


$form_container->end();



$form_container->end();


Zeile 1631Zeile 1674
	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 1650Zeile 1693
	$stylesheet = $db->fetch_array($query);

// Does the theme not exist?

	$stylesheet = $db->fetch_array($query);

// Does the theme not exist?

	if(!$stylesheet['sid'])

	if(!$stylesheet)

	{
flash_message($lang->error_invalid_stylesheet, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_stylesheet, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 1822Zeile 1865
				if($mybb->input['action_'.$id] == 1)
{
$applied_to[$value] = explode(',', $mybb->input['action_list_'.$id]);

				if($mybb->input['action_'.$id] == 1)
{
$applied_to[$value] = explode(',', $mybb->input['action_list_'.$id]);

				}

				}

			}
}
}

			}
}
}

Zeile 1839Zeile 1882

$specific_files = "<div id=\"attach_1\" class=\"attachs\">";
$count = 0;


$specific_files = "<div id=\"attach_1\" class=\"attachs\">";
$count = 0;

	if(is_array($applied_to) && $applied_to['global'][0] != "global")

	if(is_array($applied_to) && (!isset($applied_to['global']) || $applied_to['global'][0] != "global"))

	{
$check_actions = "";
$stylesheet['colors'] = array();

	{
$check_actions = "";
$stylesheet['colors'] = array();

Zeile 1948Zeile 1991
		var checked = \'\';

$(\'.\'+id+\'s_check\').each(function(e, val)

		var checked = \'\';

$(\'.\'+id+\'s_check\').each(function(e, val)

		{

		{

			if($(this).prop(\'checked\') == true)
{
checked = $(this).val();

			if($(this).prop(\'checked\') == true)
{
checked = $(this).val();

Zeile 2011Zeile 2054
	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 2030Zeile 2073
	$stylesheet = $db->fetch_array($query);

// Does the theme not exist?

	$stylesheet = $db->fetch_array($query);

// Does the theme not exist?

	if(!$stylesheet['sid'])

	if(!$stylesheet)

	{
flash_message($lang->error_invalid_stylesheet, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_stylesheet, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 2126Zeile 2169
	}

$css_array = css_to_array($stylesheet['stylesheet']);

	}

$css_array = css_to_array($stylesheet['stylesheet']);

	$selector_list = get_selectors_as_options($css_array, $mybb->input['selector']);

	$selector_list = get_selectors_as_options($css_array, $mybb->get_input('selector'));


// Do we not have any selectors? Send em to the full edit page
if(!$selector_list)


// Do we not have any selectors? Send em to the full edit page
if(!$selector_list)

Zeile 2135Zeile 2178
		admin_redirect("index.php?module=style-themes&action=edit_stylesheet&tid={$theme['tid']}&file=".htmlspecialchars_uni($stylesheet['name'])."&mode=advanced");
exit;
}

		admin_redirect("index.php?module=style-themes&action=edit_stylesheet&tid={$theme['tid']}&file=".htmlspecialchars_uni($stylesheet['name'])."&mode=advanced");
exit;
}





	// Fetch list of all of the stylesheets for this theme
$stylesheets = fetch_theme_stylesheets($theme);
$this_stylesheet = $stylesheets[$stylesheet['name']];

	// Fetch list of all of the stylesheets for this theme
$stylesheets = fetch_theme_stylesheets($theme);
$this_stylesheet = $stylesheets[$stylesheet['name']];

Zeile 2152Zeile 2195
	$page->output_header("{$lang->themes} - {$lang->edit_stylesheets}");

// If the stylesheet and theme do not match, we must be editing something that is inherited

	$page->output_header("{$lang->themes} - {$lang->edit_stylesheets}");

// If the stylesheet and theme do not match, we must be editing something that is inherited

	if($this_stylesheet['inherited'][$stylesheet['name']])

	if(!empty($this_stylesheet['inherited'][$stylesheet['name']]))

	{
$query = $db->simple_select("themes", "name", "tid='{$stylesheet['tid']}'");
$stylesheet_parent = htmlspecialchars_uni($db->fetch_field($query, 'name'));

	{
$query = $db->simple_select("themes", "name", "tid='{$stylesheet['tid']}'");
$stylesheet_parent = htmlspecialchars_uni($db->fetch_field($query, 'name'));

Zeile 2161Zeile 2204
		if($stylesheet['tid'] == 1)
{
$page->output_alert($lang->sprintf($lang->stylesheet_inherited_default, $stylesheet_parent), "ajax_alert");

		if($stylesheet['tid'] == 1)
{
$page->output_alert($lang->sprintf($lang->stylesheet_inherited_default, $stylesheet_parent), "ajax_alert");

		}
else
{
$page->output_alert($lang->sprintf($lang->stylesheet_inherited, $stylesheet_parent), "ajax_alert");
}

		}
else
{
$page->output_alert($lang->sprintf($lang->stylesheet_inherited, $stylesheet_parent), "ajax_alert");
}

	}

$sub_tabs['edit_stylesheet'] = array(

	}

$sub_tabs['edit_stylesheet'] = array(

Zeile 2187Zeile 2230
	echo $form->generate_hidden_field("action", "edit_stylesheet")."\n";
echo $form->generate_hidden_field("tid", $mybb->input['tid'])."\n";
echo $form->generate_hidden_field("file", htmlspecialchars_uni($mybb->input['file']))."\n";

	echo $form->generate_hidden_field("action", "edit_stylesheet")."\n";
echo $form->generate_hidden_field("tid", $mybb->input['tid'])."\n";
echo $form->generate_hidden_field("file", htmlspecialchars_uni($mybb->input['file']))."\n";





	echo "{$lang->selector}: <select id=\"selector\" name=\"selector\">\n{$selector_list}</select> <span id=\"mini_spinner\">".$form->generate_submit_button($lang->go)."</span><br /><br />\n";

$form->end();

// Haven't chosen a selector to edit, show the first one from the stylesheet

	echo "{$lang->selector}: <select id=\"selector\" name=\"selector\">\n{$selector_list}</select> <span id=\"mini_spinner\">".$form->generate_submit_button($lang->go)."</span><br /><br />\n";

$form->end();

// Haven't chosen a selector to edit, show the first one from the stylesheet

	if(!$mybb->input['selector'])

	if(!$mybb->get_input('selector'))

	{
reset($css_array);
uasort($css_array, "css_selectors_sort_cmp");
$selector = key($css_array);
$editable_selector = $css_array[$selector];

	{
reset($css_array);
uasort($css_array, "css_selectors_sort_cmp");
$selector = key($css_array);
$editable_selector = $css_array[$selector];

	}

	}

	// Show a specific selector
else
{

	// Show a specific selector
else
{

Zeile 2209Zeile 2252

// Get the properties from this item
$properties = parse_css_properties($editable_selector['values']);


// Get the properties from this item
$properties = parse_css_properties($editable_selector['values']);





	foreach(array('background', 'color', 'width', 'font-family', 'font-size', 'font-style', 'font-weight', 'text-decoration') as $_p)
{
if(!isset($properties[$_p]))

	foreach(array('background', 'color', 'width', 'font-family', 'font-size', 'font-style', 'font-weight', 'text-decoration') as $_p)
{
if(!isset($properties[$_p]))

Zeile 2233Zeile 2276
	$table->construct_cell("<div style=\"float: right;\">".$form->generate_text_box('css_bits[width]', $properties['width'], array('id' => 'css_bits[width]', 'style' => 'width: 260px;'))."</div><div><strong>{$lang->width}</strong></div>", array('style' => 'width: 40%;'));
$table->construct_row();
$table->construct_cell("<div style=\"float: right;\">".$form->generate_text_box('css_bits[font_family]', $properties['font-family'], array('id' => 'css_bits[font_family]', 'style' => 'width: 260px;'))."</div><div><strong>{$lang->font_family}</strong></div>", array('style' => 'width: 40%;'));

	$table->construct_cell("<div style=\"float: right;\">".$form->generate_text_box('css_bits[width]', $properties['width'], array('id' => 'css_bits[width]', 'style' => 'width: 260px;'))."</div><div><strong>{$lang->width}</strong></div>", array('style' => 'width: 40%;'));
$table->construct_row();
$table->construct_cell("<div style=\"float: right;\">".$form->generate_text_box('css_bits[font_family]', $properties['font-family'], array('id' => 'css_bits[font_family]', 'style' => 'width: 260px;'))."</div><div><strong>{$lang->font_family}</strong></div>", array('style' => 'width: 40%;'));

	$table->construct_row();

	$table->construct_row();

	$table->construct_cell("<div style=\"float: right;\">".$form->generate_text_box('css_bits[font_size]', $properties['font-size'], array('id' => 'css_bits[font_size]', 'style' => 'width: 260px;'))."</div><div><strong>{$lang->font_size}</strong></div>", array('style' => 'width: 40%;'));
$table->construct_row();
$table->construct_cell("<div style=\"float: right;\">".$form->generate_text_box('css_bits[font_style]', $properties['font-style'], array('id' => 'css_bits[font_style]', 'style' => 'width: 260px;'))."</div><div><strong>{$lang->font_style}</strong></div>", array('style' => 'width: 40%;'));

	$table->construct_cell("<div style=\"float: right;\">".$form->generate_text_box('css_bits[font_size]', $properties['font-size'], array('id' => 'css_bits[font_size]', 'style' => 'width: 260px;'))."</div><div><strong>{$lang->font_size}</strong></div>", array('style' => 'width: 40%;'));
$table->construct_row();
$table->construct_cell("<div style=\"float: right;\">".$form->generate_text_box('css_bits[font_style]', $properties['font-style'], array('id' => 'css_bits[font_style]', 'style' => 'width: 260px;'))."</div><div><strong>{$lang->font_style}</strong></div>", array('style' => 'width: 40%;'));

Zeile 2248Zeile 2291
	echo "</div>";

$buttons[] = $form->generate_reset_button($lang->reset);

	echo "</div>";

$buttons[] = $form->generate_reset_button($lang->reset);

	$buttons[] = $form->generate_submit_button($lang->save_changes, array('id' => 'save', 'name' => 'save'));
$buttons[] = $form->generate_submit_button($lang->save_changes_and_close, array('id' => 'save_close', 'name' => 'save_close'));

$form->output_submit_wrapper($buttons);

	$buttons[] = $form->generate_submit_button($lang->save_changes, array('id' => 'save', 'name' => 'save'));
$buttons[] = $form->generate_submit_button($lang->save_changes_and_close, array('id' => 'save_close', 'name' => 'save_close'));

$form->output_submit_wrapper($buttons);


echo '<script type="text/javascript" src="./jscripts/themes.js?ver=1808"></script>';
echo '<script type="text/javascript">


echo '<script type="text/javascript" src="./jscripts/themes.js?ver=1808"></script>';
echo '<script type="text/javascript">

Zeile 2268Zeile 2311

$page->output_footer();
}


$page->output_footer();
}





if($mybb->input['action'] == "edit_stylesheet" && $mybb->input['mode'] == "advanced")
{
// Fetch the theme we want to edit this stylesheet in
$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


if($mybb->input['action'] == "edit_stylesheet" && $mybb->input['mode'] == "advanced")
{
// Fetch the theme we want to edit this stylesheet in
$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	}

	}


$plugins->run_hooks("admin_style_themes_edit_stylesheet_advanced");



$plugins->run_hooks("admin_style_themes_edit_stylesheet_advanced");


Zeile 2294Zeile 2337
	$stylesheet = $db->fetch_array($query);

// Does the theme not exist?

	$stylesheet = $db->fetch_array($query);

// Does the theme not exist?

	if(!$stylesheet['sid'])
{
flash_message($lang->error_invalid_stylesheet, 'error');

	if($db->num_rows($query) == 0)
{
flash_message($lang->error_invalid_stylesheet, 'error');

		admin_redirect("index.php?module=style-themes");
}


		admin_redirect("index.php?module=style-themes");
}


Zeile 2320Zeile 2363

// Cache the stylesheet to the file
if(!cache_stylesheet($theme['tid'], $stylesheet['name'], $mybb->input['stylesheet']))


// Cache the stylesheet to the file
if(!cache_stylesheet($theme['tid'], $stylesheet['name'], $mybb->input['stylesheet']))

		{

		{

			$db->update_query("themestylesheets", array('cachefile' => "css.php?stylesheet={$sid}"), "sid='{$sid}'", 1);
}


			$db->update_query("themestylesheets", array('cachefile' => "css.php?stylesheet={$sid}"), "sid='{$sid}'", 1);
}


Zeile 2334Zeile 2377

flash_message($lang->success_stylesheet_updated, 'success');



flash_message($lang->success_stylesheet_updated, 'success');


		if(!$mybb->input['save_close'])

		if(!$mybb->get_input('save_close'))

		{
admin_redirect("index.php?module=style-themes&action=edit_stylesheet&file=".htmlspecialchars_uni($stylesheet['name'])."&tid={$theme['tid']}&mode=advanced");

		{
admin_redirect("index.php?module=style-themes&action=edit_stylesheet&file=".htmlspecialchars_uni($stylesheet['name'])."&tid={$theme['tid']}&mode=advanced");

		}
else
{

		}
else
{

			admin_redirect("index.php?module=style-themes&action=edit&tid={$theme['tid']}");
}

			admin_redirect("index.php?module=style-themes&action=edit&tid={$theme['tid']}");
}

	}


	}


	// Fetch list of all of the stylesheets for this theme
$stylesheets = fetch_theme_stylesheets($theme);
$this_stylesheet = $stylesheets[$stylesheet['name']];

	// Fetch list of all of the stylesheets for this theme
$stylesheets = fetch_theme_stylesheets($theme);
$this_stylesheet = $stylesheets[$stylesheet['name']];

Zeile 2362Zeile 2405
<script src="./jscripts/codemirror/addon/search/search.js?ver=1821"></script>
';
}

<script src="./jscripts/codemirror/addon/search/search.js?ver=1821"></script>
';
}





	$page->add_breadcrumb_item(htmlspecialchars_uni($theme['name']), "index.php?module=style-themes&amp;action=edit&amp;tid={$mybb->input['tid']}");
$page->add_breadcrumb_item("{$lang->editing} ".htmlspecialchars_uni($stylesheet['name']), "index.php?module=style-themes&amp;action=edit_stylesheet&amp;tid={$mybb->input['tid']}&amp;file=".htmlspecialchars_uni($mybb->input['file'])."&amp;mode=advanced");

$page->output_header("{$lang->themes} - {$lang->edit_stylesheet_advanced_mode}");

// If the stylesheet and theme do not match, we must be editing something that is inherited

	$page->add_breadcrumb_item(htmlspecialchars_uni($theme['name']), "index.php?module=style-themes&amp;action=edit&amp;tid={$mybb->input['tid']}");
$page->add_breadcrumb_item("{$lang->editing} ".htmlspecialchars_uni($stylesheet['name']), "index.php?module=style-themes&amp;action=edit_stylesheet&amp;tid={$mybb->input['tid']}&amp;file=".htmlspecialchars_uni($mybb->input['file'])."&amp;mode=advanced");

$page->output_header("{$lang->themes} - {$lang->edit_stylesheet_advanced_mode}");

// If the stylesheet and theme do not match, we must be editing something that is inherited

	if($this_stylesheet['inherited'][$stylesheet['name']])

	if(!empty($this_stylesheet['inherited']) && $this_stylesheet['inherited'][$stylesheet['name']])

	{
$query = $db->simple_select("themes", "name", "tid='{$stylesheet['tid']}'");
$stylesheet_parent = htmlspecialchars_uni($db->fetch_field($query, 'name'));

	{
$query = $db->simple_select("themes", "name", "tid='{$stylesheet['tid']}'");
$stylesheet_parent = htmlspecialchars_uni($db->fetch_field($query, 'name'));

Zeile 2445Zeile 2488
	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 2464Zeile 2507
	$stylesheet = $db->fetch_array($query);

// Does the theme not exist? or are we trying to delete the master?

	$stylesheet = $db->fetch_array($query);

// Does the theme not exist? or are we trying to delete the master?

	if(!$stylesheet['sid'] || $stylesheet['tid'] == 1)

	if(!$stylesheet || $stylesheet['tid'] == 1)

	{
flash_message($lang->error_invalid_stylesheet, 'error');

	{
flash_message($lang->error_invalid_stylesheet, 'error');

		admin_redirect("index.php?module=style-themes");
}


		admin_redirect("index.php?module=style-themes");
}


	// User clicked no

	// User clicked no

	if($mybb->input['no'])

	if($mybb->get_input('no'))

	{
admin_redirect("index.php?module=style-themes");
}

	{
admin_redirect("index.php?module=style-themes");
}

Zeile 2486Zeile 2529

// Update the CSS file list for this theme
update_theme_stylesheet_list($theme['tid'], $theme, true);


// Update the CSS file list for this theme
update_theme_stylesheet_list($theme['tid'], $theme, true);





		$plugins->run_hooks("admin_style_themes_delete_stylesheet_commit");

// Log admin action
log_admin_action($stylesheet['sid'], $stylesheet['name'], $theme['tid'], $theme['name']);

		$plugins->run_hooks("admin_style_themes_delete_stylesheet_commit");

// Log admin action
log_admin_action($stylesheet['sid'], $stylesheet['name'], $theme['tid'], $theme['name']);





		flash_message($lang->success_stylesheet_deleted, 'success');
admin_redirect("index.php?module=style-themes&action=edit&tid={$theme['tid']}");
}

		flash_message($lang->success_stylesheet_deleted, 'success');
admin_redirect("index.php?module=style-themes&action=edit&tid={$theme['tid']}");
}

Zeile 2507Zeile 2550
	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'");
$theme = $db->fetch_array($query);


	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	}

$plugins->run_hooks("admin_style_themes_add_stylesheet");

	}

$plugins->run_hooks("admin_style_themes_add_stylesheet");


// Fetch list of all of the stylesheets for this theme
$stylesheets = fetch_theme_stylesheets($theme);


// Fetch list of all of the stylesheets for this theme
$stylesheets = fetch_theme_stylesheets($theme);

Zeile 2668Zeile 2711
	);

$page->output_nav_tabs($sub_tabs, 'add_stylesheet');

	);

$page->output_nav_tabs($sub_tabs, 'add_stylesheet');

 

$add_checked = array();


if($errors)
{
$page->output_inline_error($errors);


if($errors)
{
$page->output_inline_error($errors);





		foreach($mybb->input as $name => $value)
{
if(strpos($name, "attached") !== false)

		foreach($mybb->input as $name => $value)
{
if(strpos($name, "attached") !== false)

Zeile 2683Zeile 2728
				$mybb->input['applied_to'][$value] = array(0 => 'global');

if($mybb->input['action_'.$id] == 1)

				$mybb->input['applied_to'][$value] = array(0 => 'global');

if($mybb->input['action_'.$id] == 1)

				{

				{

					$mybb->input['applied_to'][$value] = explode(',', $mybb->input['action_list_'.$id]);
}
}

					$mybb->input['applied_to'][$value] = explode(',', $mybb->input['action_list_'.$id]);
}
}

Zeile 2701Zeile 2746
		}
}
else

		}
}
else

	{
$mybb->input['name'] = $stylesheet['name'];
}












	{
$stylesheet = $mybb->get_input('stylesheet', MyBB::INPUT_ARRAY);
if(!isset($stylesheet['sid']))
{
$stylesheet['sid'] = '';
}
if(isset($stylesheet['name']))
{
$mybb->input['name'] = $stylesheet['name'];
}

$add_checked[1] = "";
$add_checked[2] = "";
}


$global_checked[1] = "checked=\"checked\"";
$global_checked[2] = "";
$global_checked[3] = "";

$form = new Form("index.php?module=style-themes&amp;action=add_stylesheet", "post", "add_stylesheet");


$global_checked[1] = "checked=\"checked\"";
$global_checked[2] = "";
$global_checked[3] = "";

$form = new Form("index.php?module=style-themes&amp;action=add_stylesheet", "post", "add_stylesheet");





	echo $form->generate_hidden_field("tid", $mybb->input['tid'])."\n";

$specific_files = "<div id=\"attach_1\" class=\"attachs\">";
$count = 0;

	echo $form->generate_hidden_field("tid", $mybb->input['tid'])."\n";

$specific_files = "<div id=\"attach_1\" class=\"attachs\">";
$count = 0;

 
	$check_actions = "";
$mybb->input['attach'] = $mybb->get_input('attach', MyBB::INPUT_INT);
$stylesheet['colors'] = array();
$stylesheet['sid'] = null;


if($mybb->input['attach'] == 1 && is_array($mybb->input['applied_to']) && (!isset($mybb->input['applied_to']['global']) || $mybb->input['applied_to']['global'][0] != "global"))
{


if($mybb->input['attach'] == 1 && is_array($mybb->input['applied_to']) && (!isset($mybb->input['applied_to']['global']) || $mybb->input['applied_to']['global'][0] != "global"))
{

		$check_actions = "";


 
		foreach($mybb->input['applied_to'] as $name => $actions)
{
$action_list = "";
if($actions[0] != "global")
{
$action_list = implode(',', $actions);

		foreach($mybb->input['applied_to'] as $name => $actions)
{
$action_list = "";
if($actions[0] != "global")
{
$action_list = implode(',', $actions);

			}

			}


if($actions[0] == "global")
{


if($actions[0] == "global")
{

Zeile 2774Zeile 2832
	else if($mybb->input['attach'] == 2)
{
// Colors

	else if($mybb->input['attach'] == 2)
{
// Colors

		$stylesheet['colors'] = array();

 
		if(is_array($properties['colors']))
{
// We might have colors here...
foreach($mybb->input['color'] as $color)

		if(is_array($properties['colors']))
{
// We might have colors here...
foreach($mybb->input['color'] as $color)

			{

			{

				// Verify this is a color for this theme
if(array_key_exists($color, $properties['colors']))
{

				// Verify this is a color for this theme
if(array_key_exists($color, $properties['colors']))
{

Zeile 2801Zeile 2858
	// Colors
$specific_colors = $specific_colors_option = '';


	// Colors
$specific_colors = $specific_colors_option = '';


	if(is_array($properties['colors']))

	if(isset($properties['colors']) && is_array($properties['colors']))

	{
$specific_colors = "<br /><div id=\"attach_2\" class=\"attachs\">";
$specific_colors_option = '<dt><label style="display: block;"><input type="radio" name="attach" value="2" '.$global_checked[3].' class="attachs_check" onclick="checkAction(\'attach\');" style="vertical-align: middle;" /> '.$lang->colors_specific_color.'</label></dt>';

	{
$specific_colors = "<br /><div id=\"attach_2\" class=\"attachs\">";
$specific_colors_option = '<dt><label style="display: block;"><input type="radio" name="attach" value="2" '.$global_checked[3].' class="attachs_check" onclick="checkAction(\'attach\');" style="vertical-align: middle;" /> '.$lang->colors_specific_color.'</label></dt>';

Zeile 2811Zeile 2868
			<br /><br />
".$form->generate_select_box('color[]', $properties['colors'], $stylesheet['colors'], array('multiple' => true, 'size' => "5\" style=\"width: 200px;"))."
";

			<br /><br />
".$form->generate_select_box('color[]', $properties['colors'], $stylesheet['colors'], array('multiple' => true, 'size' => "5\" style=\"width: 200px;"))."
";





		$form_container = new FormContainer();
$form_container->output_row("", "", $specific_color);
$specific_colors .= $form_container->end(true)."</div>";

		$form_container = new FormContainer();
$form_container->output_row("", "", $specific_color);
$specific_colors .= $form_container->end(true)."</div>";

Zeile 2853Zeile 2910
	echo $form->generate_hidden_field("sid", $stylesheet['sid'])."<br />\n";

$form_container = new FormContainer($lang->add_stylesheet_to.' '.htmlspecialchars_uni($theme['name']), 'tfixed');

	echo $form->generate_hidden_field("sid", $stylesheet['sid'])."<br />\n";

$form_container = new FormContainer($lang->add_stylesheet_to.' '.htmlspecialchars_uni($theme['name']), 'tfixed');

	$form_container->output_row($lang->file_name, $lang->file_name_desc, $form->generate_text_box('name', $mybb->input['name'], array('id' => 'name', 'style' => 'width: 200px;')), 'name');

	$form_container->output_row($lang->file_name, $lang->file_name_desc, $form->generate_text_box('name', $mybb->get_input('name'), array('id' => 'name', 'style' => 'width: 200px;')), 'name');


$form_container->output_row($lang->attached_to, $lang->attached_to_desc, $actions);



$form_container->output_row($lang->attached_to, $lang->attached_to_desc, $actions);


Zeile 2868Zeile 2925
		<dd style=\"margin-top: 4px;\" id=\"add_1\" class=\"adds\">
<table cellpadding=\"4\">
<tr>

		<dd style=\"margin-top: 4px;\" id=\"add_1\" class=\"adds\">
<table cellpadding=\"4\">
<tr>

					<td>".$form->generate_select_box('import', $sheetnames, $mybb->input['import'], array('id' => 'import'))."</td>

					<td>".$form->generate_select_box('import', $sheetnames, $mybb->get_input('import'), array('id' => 'import'))."</td>

				</tr>
</table>
</dd>
<dt><label style=\"display: block;\"><input type=\"radio\" name=\"add_type\" value=\"2\" {$add_checked[2]} class=\"adds_check\" onclick=\"checkAction('add');\" style=\"vertical-align: middle;\" /> <strong>{$lang->write_own}</strong></label></dt>

				</tr>
</table>
</dd>
<dt><label style=\"display: block;\"><input type=\"radio\" name=\"add_type\" value=\"2\" {$add_checked[2]} class=\"adds_check\" onclick=\"checkAction('add');\" style=\"vertical-align: middle;\" /> <strong>{$lang->write_own}</strong></label></dt>

		<span id=\"add_2\" class=\"adds\"><br />".$form->generate_text_area('stylesheet', $mybb->input['stylesheet'], array('id' => 'stylesheet', 'style' => 'width: 99%;', 'class' => '', 'rows' => '30'))."</span>

		<span id=\"add_2\" class=\"adds\"><br />".$form->generate_text_area('stylesheet', $mybb->get_input('stylesheet'), array('id' => 'stylesheet', 'style' => 'width: 99%;', 'class' => '', 'rows' => '30'))."</span>

	</dl>";

$form_container->output_row("", "", $actions);

	</dl>";

$form_container->output_row("", "", $actions);

Zeile 2916Zeile 2973

if($mybb->input['action'] == "set_default")
{


if($mybb->input['action'] == "set_default")
{

	if(!verify_post_check($mybb->input['my_post_key']))

	if(!verify_post_check($mybb->get_input('my_post_key')))

	{
flash_message($lang->invalid_post_verify_key2, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->invalid_post_verify_key2, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 2926Zeile 2983
	$theme = $db->fetch_array($query);

// Does the theme not exist?

	$theme = $db->fetch_array($query);

// Does the theme not exist?

	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 2954Zeile 3011
	$theme = $db->fetch_array($query);

// Does the theme not exist?

	$theme = $db->fetch_array($query);

// Does the theme not exist?

	if(!$theme['tid'] || $theme['tid'] == 1)

	if(!$theme || $theme['tid'] == 1)

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

	{
flash_message($lang->error_invalid_theme, 'error');
admin_redirect("index.php?module=style-themes");

Zeile 2963Zeile 3020
	$plugins->run_hooks("admin_style_themes_force");

// User clicked no

	$plugins->run_hooks("admin_style_themes_force");

// User clicked no

	if($mybb->input['no'])

	if($mybb->get_input('no'))

	{
admin_redirect("index.php?module=style-themes");
}

	{
admin_redirect("index.php?module=style-themes");
}