imdbphp
imdbphp copied to clipboard
quick fix for series cinematogropher
https://github.com/tboothman/imdbphp/blob/master/src/Imdb/Title.php line 1848
$cinematographer_rows = $this->get_table_rows($this->getPage('Credits'), "Cinematography by");
change to
$cinematographer_rows = $this->get_table_rows($this->getPage('Credits'), "Cinematography by");
if (!$cinematographer_rows) {
$cinematographer_rows = $this->get_table_rows($this->getPage('Credits'), "Series Cinematography by");
}
Good catch. But if you want this to be changed i suggest to make a PR (if you can that is)