• Lines 299, 300, and 301 in /wp-includes/meta.php need to be changed from:

    $mpid = intval($metarow[$column]);
    $mkey = $metarow['meta_key'];
    $mval = $metarow['meta_value'];

    to:

    $mpid = intval($metarow->$column);
    $mkey = $metarow->meta_key;
    $mval = $metarow->meta_value;

    Cheers!

    er… uh… looks like this is all over the place. Maybe I just can’t use WordPress 3.0.1 with PHP 5.3.2
    Perhaps this post should get dropped or move it to “Installation”.
    I just can’t get through a single page without needing to fix some code.
    Is there a newer new version that supports PHP 5.3?

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Error in /wp-includes/meta.php’ is closed to new replies.