[Plugin: Ad-minister] WP 2.8 Setup Fix
-
After setting up the ID for the page in Setup you’ll probably get the error:
Fatal error: Only variables can be passed by reference in /var/www/web318/html/wp/wp-content/plugins/ad-minister/ad-minister-functions.php on line 140
To fix this edit ad-minister-functions.php and change this in Line 140:
$the_page = get_page(get_option('administer_post_id'));
to$pid = get_option('administer_post_id'); $the_page = get_page($pid);
Cheers
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Plugin: Ad-minister] WP 2.8 Setup Fix’ is closed to new replies.