Don't include HTML in gettext call. Props nbachiyski and Nazgul. fixes #4437
git-svn-id: http://svn.automattic.com/wordpress/trunk@5688 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b26a66ced0
commit
e3328ca20b
|
@ -860,7 +860,7 @@ function wp_widget_rss($args, $number = 1) {
|
||||||
echo "<li><a class='rsswidget' href='$link' title='$desc'>$title</a>$summary</li>";
|
echo "<li><a class='rsswidget' href='$link' title='$desc'>$title</a>$summary</li>";
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
echo __('<li>An error has occured; the feed is probably down. Try again later.</li>');
|
echo '<li>' . __( 'An error has occurred; the feed is probably down. Try again later.' ) . '</li>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -1,24 +1,22 @@
|
||||||
<?php
|
<?php
|
||||||
// Turn register globals off
|
|
||||||
function wp_unregister_GLOBALS() {
|
|
||||||
if ( !ini_get('register_globals') )
|
|
||||||
return;
|
|
||||||
|
|
||||||
if ( isset($_REQUEST['GLOBALS']) )
|
if ( ini_get( 'register_globals' ) ) {
|
||||||
die('GLOBALS overwrite attempt detected');
|
if ( isset( $_REQUEST['GLOBALS'] ) ) {
|
||||||
|
die( 'GLOBALS overwrite attempt detected. Exiting.' );
|
||||||
|
}
|
||||||
|
|
||||||
// Variables that shouldn't be unset
|
$no_unset = array( 'GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix' );
|
||||||
$noUnset = array('GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix');
|
$input = array_merge( $_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, is_array( $_SESSION ) ? $_SESSION : array() );
|
||||||
|
|
||||||
$input = array_merge($_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset($_SESSION) && is_array($_SESSION) ? $_SESSION : array());
|
foreach ( $input as $key => $val ) {
|
||||||
foreach ( $input as $k => $v )
|
if ( !in_array( $key, $no_unset ) && isset( $GLOBALS[$k] ) ) {
|
||||||
if ( !in_array($k, $noUnset) && isset($GLOBALS[$k]) ) {
|
|
||||||
$GLOBALS[$k] = NULL;
|
$GLOBALS[$k] = NULL;
|
||||||
unset($GLOBALS[$k]);
|
unset( $GLOBALS[$key] );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_unregister_GLOBALS();
|
unset( $no_unset, $input );
|
||||||
|
}
|
||||||
|
|
||||||
unset( $wp_filter, $cache_userdata, $cache_lastcommentmodified, $cache_lastpostdate, $cache_settings, $category_cache, $cache_categories );
|
unset( $wp_filter, $cache_userdata, $cache_lastcommentmodified, $cache_lastpostdate, $cache_settings, $category_cache, $cache_categories );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue