Index: trunk/phase3/includes/api/ApiQueryCategories.php |
— | — | @@ -87,7 +87,7 @@ |
88 | 88 | foreach($params['categories'] as $cat) |
89 | 89 | { |
90 | 90 | $title = Title::newFromText($cat); |
91 | | - if($title->getNamespace() != NS_CATEGORY) |
| 91 | + if(!$title || $title->getNamespace() != NS_CATEGORY) |
92 | 92 | $this->setWarning("``$cat'' is not a category"); |
93 | 93 | else |
94 | 94 | $cats[] = $title->getDBkey(); |
— | — | @@ -239,4 +239,4 @@ |
240 | 240 | public function getVersion() { |
241 | 241 | return __CLASS__ . ': $Id$'; |
242 | 242 | } |
243 | | -} |
\ No newline at end of file |
| 243 | +} |