php-youtube-api
php-youtube-api copied to clipboard
Cant parse video url without http:// prefix
Youtube.php:429
change:
if (strpos($youtube_url, 'youtube.com')) {
to
if (strpos($youtube_url, 'youtube.com') !== false) {
same here: Youtube.php:437