Take that, PHP 5.0.5. Good riddens. see #14160.
git-svn-id: https://develop.svn.wordpress.org/trunk@18110 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
218486fb46
commit
36f1805ec4
@ -859,7 +859,7 @@ case 'add-meta' :
|
||||
'supplemental' => array('postid' => $pid)
|
||||
) );
|
||||
} else { // Update?
|
||||
$mid = (int) array_pop( $var_by_ref = array_keys($_POST['meta']) );
|
||||
$mid = (int) array_pop( array_keys($_POST['meta']) );
|
||||
$key = $_POST['meta'][$mid]['key'];
|
||||
$value = $_POST['meta'][$mid]['value'];
|
||||
if ( '' == trim($key) )
|
||||
|
@ -334,7 +334,7 @@ function _wp_ajax_menu_quick_search( $request = array() ) {
|
||||
while ( have_posts() ) {
|
||||
the_post();
|
||||
if ( 'markup' == $response_format ) {
|
||||
echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', array( get_post( $var_by_ref = get_the_ID() ) ) ), 0, (object) $args );
|
||||
echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', array( get_post( get_the_ID() ) ) ), 0, (object) $args );
|
||||
} elseif ( 'json' == $response_format ) {
|
||||
echo json_encode(
|
||||
array(
|
||||
|
@ -223,7 +223,7 @@ class AtomServer {
|
||||
*/
|
||||
function __construct() {
|
||||
|
||||
$this->script_name = array_pop( $var_by_ref = explode( '/', $_SERVER['SCRIPT_NAME'] ) );
|
||||
$this->script_name = array_pop( explode( '/', $_SERVER['SCRIPT_NAME'] ) );
|
||||
$this->app_base = site_url( $this->script_name . '/' );
|
||||
|
||||
$this->selectors = array(
|
||||
|
@ -1365,7 +1365,7 @@ class wpdb {
|
||||
// Return an array of row objects with keys from column 1
|
||||
// (Duplicates are discarded)
|
||||
foreach ( $this->last_result as $row ) {
|
||||
$key = array_shift( $var_by_ref = get_object_vars( $row ) );
|
||||
$key = array_shift( get_object_vars( $row ) );
|
||||
if ( ! isset( $new_array[ $key ] ) )
|
||||
$new_array[ $key ] = $row;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user