Zeile 20 | Zeile 20 |
---|
// Check for the latest version require_once MYBB_ROOT.'inc/class_xml.php';
|
// Check for the latest version require_once MYBB_ROOT.'inc/class_xml.php';
|
$contents = fetch_remote_file("http://www.mybb.com/version_check.php");
| $contents = fetch_remote_file("https://mybb.com/version_check.php");
|
if(!$contents) {
| if(!$contents) {
|
Zeile 43 | Zeile 43 |
---|
$parser = new XMLParser($contents); $tree = $parser->get_tree();
|
$parser = new XMLParser($contents); $tree = $parser->get_tree();
|
$latest_code = $tree['mybb']['version_code']['value']; $latest_version = "<strong>".$tree['mybb']['latest_version']['value']."</strong> (".$latest_code.")";
| $latest_code = (int)$tree['mybb']['version_code']['value']; $latest_version = "<strong>".htmlspecialchars_uni($tree['mybb']['latest_version']['value'])."</strong> (".$latest_code.")";
|
if($latest_code > $mybb->version_code) { $latest_version = "<span style=\"color: #C00;\">".$latest_version."</span>";
| if($latest_code > $mybb->version_code) { $latest_version = "<span style=\"color: #C00;\">".$latest_version."</span>";
|
Zeile 64 | Zeile 64 |
---|
$feed_parser->parse_feed("http://feeds.feedburner.com/MyBBDevelopmentBlog");
$updated_cache['news'] = array();
|
$feed_parser->parse_feed("http://feeds.feedburner.com/MyBBDevelopmentBlog");
$updated_cache['news'] = array();
|
| require_once MYBB_ROOT . '/inc/class_parser.php'; $post_parser = new postParser();
|
if($feed_parser->error == '') { foreach($feed_parser->items as $item) {
|
if($feed_parser->error == '') { foreach($feed_parser->items as $item) {
|
if(isset($updated_cache['news'][2]))
| if (isset($updated_cache['news'][2]))
|
{ break; }
|
{ break; }
|
| $description = $item['description'];
$description = $post_parser->parse_message($description, array( 'allow_html' => true, ) );
$description = preg_replace('#<img(.*)/>#', '', $description);
|
$updated_cache['news'][] = array(
|
$updated_cache['news'][] = array(
|
'title' => $item['title'], 'description' => preg_replace('#<img(.*)/>#', '', $item['description']), 'link' => $item['link'], 'author' => $item['author'],
| 'title' => htmlspecialchars_uni($item['title']), 'description' => $description, 'link' => htmlspecialchars_uni($item['link']), 'author' => htmlspecialchars_uni($item['author']),
|
'dateline' => $item['date_timestamp'] ); }
| 'dateline' => $item['date_timestamp'] ); }
|