Bug report: get_bloginfo('home') deprecated in attachment.php
-
Hi,
Thanks for making this plugin.
When wp_debug is set to true in wp-config.php the following error is thrown on a basic json call https://mysite.local/?json=1The php warning is:
Notice: get_bloginfo was called with an argument that is deprecated since version 2.2! The home option is deprecated for the family of bloginfo() functions. Use the url option instead.
The error occurs in
json-api/models/attachment.phpline 44:
$home = get_bloginfo(‘home’);should be changed to
$home = get_bloginfo(‘url’);
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Bug report: get_bloginfo('home') deprecated in attachment.php’ is closed to new replies.