Index: trunk/phase3/includes/api/ApiQueryExtLinksUsage.php |
— | — | @@ -198,4 +198,3 @@ |
199 | 199 | return __CLASS__ . ': $Id$'; |
200 | 200 | } |
201 | 201 | } |
202 | | -?> |
Index: trunk/phase3/includes/api/ApiQueryImageInfo.php |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | $title = Title :: makeTitle(NS_IMAGE, $dbKey); |
60 | 60 | $img = wfFindFile($title); |
61 | 61 | |
62 | | - $vals = array(); |
| 62 | + $data = array(); |
63 | 63 | if ( !$img ) { |
64 | 64 | $data['missing'] = ''; |
65 | 65 | } else { |
— | — | @@ -137,7 +137,6 @@ |
138 | 138 | } |
139 | 139 | |
140 | 140 | public function getVersion() { |
141 | | - return __CLASS__ . ': $Id:$'; |
| 141 | + return __CLASS__ . ': $Id$'; |
142 | 142 | } |
143 | 143 | } |
144 | | -?> |