Vergleich admin/modules/forum/announcements.php - 1.8.1 - 1.8.6

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 68Zeile 68
			$errors[] = $lang->error_missing_forum;
}


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


		if(!checkdate((int)$mybb->input['starttime_month'], (int)$mybb->input['starttime_day'], (int)$mybb->input['starttime_year']))

		if(!checkdate($mybb->get_input('starttime_month', MyBB::INPUT_INT), $mybb->get_input('starttime_day', MyBB::INPUT_INT), $mybb->get_input('starttime_year', MyBB::INPUT_INT)))

		{
$errors[] = $lang->error_invalid_start_date;
}

		{
$errors[] = $lang->error_invalid_start_date;
}

Zeile 97Zeile 97
			}
}


			}
}


		$startdate = gmmktime((int)$startdate[0], (int)$startdate[1], 0, (int)$mybb->input['starttime_month'], (int)$mybb->input['starttime_day'], (int)$mybb->input['starttime_year']);

		$startdate = gmmktime((int)$startdate[0], (int)$startdate[1], 0, $mybb->get_input('starttime_month', MyBB::INPUT_INT), $mybb->get_input('starttime_day', MyBB::INPUT_INT), $mybb->get_input('starttime_year', MyBB::INPUT_INT));


if($mybb->input['endtime_type'] != "2")
{


if($mybb->input['endtime_type'] != "2")
{

			$enddate = gmmktime((int)$enddate[0], (int)$enddate[1], 0, (int)$mybb->input['endtime_month'], (int)$mybb->input['endtime_day'], (int)$mybb->input['endtime_year']);
if(!checkdate((int)$mybb->input['endtime_month'], (int)$mybb->input['endtime_day'], (int)$mybb->input['endtime_year']))

			$enddate = gmmktime((int)$enddate[0], (int)$enddate[1], 0, $mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT));
if(!checkdate($mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT)))

			{
$errors[] = $lang->error_invalid_end_date;
}

			{
$errors[] = $lang->error_invalid_end_date;
}

Zeile 117Zeile 117
			if(isset($mybb->input['preview']))
{
$parser_options = array();

			if(isset($mybb->input['preview']))
{
$parser_options = array();

				$parser_options['allow_html'] = (int)$mybb->input['allowhtml'];
$parser_options['allow_mycode'] = (int)$mybb->input['allowmycode'];
$parser_options['allow_smilies'] = (int)$mybb->input['allowsmilies'];

				$parser_options['allow_html'] = $mybb->get_input('allowhtml', MyBB::INPUT_INT);
$parser_options['allow_mycode'] = $mybb->get_input('allowmycode', MyBB::INPUT_INT);
$parser_options['allow_smilies'] = $mybb->get_input('allowsmilies', MyBB::INPUT_INT);

				$parser_options['allow_imgcode'] = 1;
$parser_options['allow_videocode'] = 1;
$parser_options['me_username'] = htmlspecialchars_uni($mybb->user['username']);

				$parser_options['allow_imgcode'] = 1;
$parser_options['allow_videocode'] = 1;
$parser_options['me_username'] = htmlspecialchars_uni($mybb->user['username']);

Zeile 162Zeile 162
					"message" => $db->escape_string($mybb->input['message']),
"startdate" => $startdate,
"enddate" => $enddate,

					"message" => $db->escape_string($mybb->input['message']),
"startdate" => $startdate,
"enddate" => $enddate,

					"allowhtml" => $db->escape_string($mybb->input['allowhtml']),
"allowmycode" => $db->escape_string($mybb->input['allowmycode']),
"allowsmilies" => $db->escape_string($mybb->input['allowsmilies']),

					"allowhtml" => $mybb->get_input('allowhtml', MyBB::INPUT_INT),
"allowmycode" => $mybb->get_input('allowmycode', MyBB::INPUT_INT),
"allowsmilies" => $mybb->get_input('allowsmilies', MyBB::INPUT_INT)

				);

$aid = $db->insert_query("announcements", $insert_announcement);

				);

$aid = $db->insert_query("announcements", $insert_announcement);

Zeile 242Zeile 242

if($mybb->input['starttime_day'])
{


if($mybb->input['starttime_day'])
{

		$startday = (int)$mybb->input['starttime_day'];

		$startday = $mybb->get_input('starttime_day', MyBB::INPUT_INT);

	}
else
{

	}
else
{

Zeile 251Zeile 251

if($mybb->input['endtime_day'])
{


if($mybb->input['endtime_day'])
{

		$endday = (int)$mybb->input['endtime_day'];

		$endday = $mybb->get_input('endtime_day', MyBB::INPUT_INT);

	}
else
{

	}
else
{

Zeile 290Zeile 290

if($mybb->input['starttime_month'])
{


if($mybb->input['starttime_month'])
{

		$startmonth = (int)$mybb->input['starttime_month'];

		$startmonth = $mybb->get_input('starttime_month', MyBB::INPUT_INT);

		$startmonthsel[$startmonth] = "selected=\"selected\"";
}
else

		$startmonthsel[$startmonth] = "selected=\"selected\"";
}
else

Zeile 301Zeile 301

if($mybb->input['endtime_month'])
{


if($mybb->input['endtime_month'])
{

		$endmonth = (int)$mybb->input['endtime_month'];

		$endmonth = $mybb->get_input('endtime_month', MyBB::INPUT_INT);

		$endmonthsel[$endmonth] = "selected=\"selected\"";
}
else

		$endmonthsel[$endmonth] = "selected=\"selected\"";
}
else

Zeile 337Zeile 337

if($mybb->input['starttime_year'])
{


if($mybb->input['starttime_year'])
{

		$startdateyear = (int)$mybb->input['starttime_year'];

		$startdateyear = $mybb->get_input('starttime_year', MyBB::INPUT_INT);

	}
else
{

	}
else
{

Zeile 346Zeile 346

if($mybb->input['endtime_year'])
{


if($mybb->input['endtime_year'])
{

		$enddateyear = (int)$mybb->input['endtime_year'];

		$enddateyear = $mybb->get_input('endtime_year', MyBB::INPUT_INT);

	}
else
{

	}
else
{

Zeile 449Zeile 449
			$errors[] = $lang->error_missing_forum;
}


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


		if(!checkdate((int)$mybb->input['starttime_month'], (int)$mybb->input['starttime_day'], (int)$mybb->input['starttime_year']))

		if(!checkdate($mybb->get_input('starttime_month', MyBB::INPUT_INT), $mybb->get_input('starttime_day', MyBB::INPUT_INT), $mybb->get_input('starttime_year', MyBB::INPUT_INT)))

		{
$errors[] = $lang->error_invalid_start_date;
}

		{
$errors[] = $lang->error_invalid_start_date;
}

Zeile 478Zeile 478
			}
}


			}
}


		$startdate = gmmktime((int)$startdate[0], (int)$startdate[1], 0, (int)$mybb->input['starttime_month'], (int)$mybb->input['starttime_day'], (int)$mybb->input['starttime_year']);

		$startdate = gmmktime((int)$startdate[0], (int)$startdate[1], 0, $mybb->get_input('starttime_month', MyBB::INPUT_INT), $mybb->get_input('starttime_day', MyBB::INPUT_INT), $mybb->get_input('starttime_year', MyBB::INPUT_INT));


if($mybb->input['endtime_type'] != "2")
{


if($mybb->input['endtime_type'] != "2")
{

			$enddate = gmmktime((int)$enddate[0], (int)$enddate[1], 0, (int)$mybb->input['endtime_month'], (int)$mybb->input['endtime_day'], (int)$mybb->input['endtime_year']);
if(!checkdate((int)$mybb->input['endtime_month'], (int)$mybb->input['endtime_day'], (int)$mybb->input['endtime_year']))

			$enddate = gmmktime((int)$enddate[0], (int)$enddate[1], 0, $mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT));
if(!checkdate($mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT)))

			{
$errors[] = $lang->error_invalid_end_date;
}

			{
$errors[] = $lang->error_invalid_end_date;
}

Zeile 498Zeile 498
			if(isset($mybb->input['preview']))
{
$parser_options = array();

			if(isset($mybb->input['preview']))
{
$parser_options = array();

				$parser_options['allow_html'] = (int)$mybb->input['allowhtml'];
$parser_options['allow_mycode'] = (int)$mybb->input['allowmycode'];
$parser_options['allow_smilies'] = (int)$mybb->input['allowsmilies'];

				$parser_options['allow_html'] = $mybb->get_input('allowhtml', MyBB::INPUT_INT);
$parser_options['allow_mycode'] = $mybb->get_input('allowmycode', MyBB::INPUT_INT);
$parser_options['allow_smilies'] = $mybb->get_input('allowsmilies', MyBB::INPUT_INT);

				$parser_options['allow_imgcode'] = 1;
$parser_options['allow_videocode'] = 1;
$parser_options['me_username'] = htmlspecialchars_uni($mybb->user['username']);

				$parser_options['allow_imgcode'] = 1;
$parser_options['allow_videocode'] = 1;
$parser_options['me_username'] = htmlspecialchars_uni($mybb->user['username']);

Zeile 543Zeile 543
					"message" => $db->escape_string($mybb->input['message']),
"startdate" => $startdate,
"enddate" => $enddate,

					"message" => $db->escape_string($mybb->input['message']),
"startdate" => $startdate,
"enddate" => $enddate,

					"allowhtml" => $db->escape_string($mybb->input['allowhtml']),
"allowmycode" => $db->escape_string($mybb->input['allowmycode']),
"allowsmilies" => $db->escape_string($mybb->input['allowsmilies']),

					"allowhtml" => $mybb->get_input('allowhtml', MyBB::INPUT_INT),
"allowmycode" => $mybb->get_input('allowmycode', MyBB::INPUT_INT),
"allowsmilies" => $mybb->get_input('allowsmilies', MyBB::INPUT_INT)

				);

$plugins->run_hooks("admin_forum_announcements_edit_commit");

				);

$plugins->run_hooks("admin_forum_announcements_edit_commit");

Zeile 569Zeile 569
	$form = new Form("index.php?module=forum-announcements&action=edit", "post");
echo $form->generate_hidden_field("aid", $mybb->input['aid']);


	$form = new Form("index.php?module=forum-announcements&action=edit", "post");
echo $form->generate_hidden_field("aid", $mybb->input['aid']);


	if($errors)

	if($errors || isset($mybb->input['preview']))

	{

	{

		$page->output_inline_error($errors);





		// Only show errors if we have any
if($errors)
{
$page->output_inline_error($errors);
}


// Gather start and end date data
$startday = $mybb->input['starttime_day'];


// Gather start and end date data
$startday = $mybb->input['starttime_day'];

Zeile 877Zeile 881
	$page->output_footer();
}


	$page->output_footer();
}


 
/**
* @param DefaultTable $table
* @param int $pid
* @param int $depth
*/

function fetch_forum_announcements(&$table, $pid=0, $depth=1)
{
global $mybb, $db, $lang, $announcements, $page;

function fetch_forum_announcements(&$table, $pid=0, $depth=1)
{
global $mybb, $db, $lang, $announcements, $page;