Broke the include path with YouTube API update
-
In change @1317596 at line 54 of external-videos/trunk/external-videos.php you have:
set_include_path(WP_PLUGIN_DIR . '/external-videos/google-api-php-client/src/Google');
This should append to the include path instead of overwriting it. This breaks another plugin I have that has added its own references to the include path.
Syntax should be like:
set_include_path(get_include_path() . PATH_SEPARATOR . $path_to_add);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Broke the include path with YouTube API update’ is closed to new replies.