• I’ve posted in How-To and Troubleshooting forum too

    In function import_from_reader($reader) in file wp-includes/pomo/mo.php
    change:
    if (” == $original) {
    $this->set_headers($this->make_headers($translation));
    } else {

    by:
    if (” == $original) {
    $tmp = $this->make_headers($translation);
    $this->set_headers($tmp);
    } else {

    Can this little patch applied to official releases?

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to fix PHP 5.0.5: Fatal error: Only variables can be passed by reference’ is closed to new replies.