There simple answer to fix the problem.
You can separate your command line. For example:
Before:
$this->queried_object = & get_page(get_option(‘page_for_posts’));
After:
$tmpPageVariable = get_option(‘page_for_posts’);
$this->queried_object = & get_page($tmpPageVariable);
Enjoy!

