Index: trunk/phase3/includes/filerepo/ForeignAPIFile.php |
— | — | @@ -98,11 +98,11 @@ |
99 | 99 | |
100 | 100 | // Info we can get from API... |
101 | 101 | public function getWidth( $page = 1 ) { |
102 | | - return isset( $this->mInfo['width'] ) ? intval( @$this->mInfo['width'] ) : 0; |
| 102 | + return isset( $this->mInfo['width'] ) ? intval( $this->mInfo['width'] ) : 0; |
103 | 103 | } |
104 | 104 | |
105 | 105 | public function getHeight( $page = 1 ) { |
106 | | - return isset( $this->mInfo['height'] ) ? intval( @$this->mInfo['height'] ) : 0; |
| 106 | + return isset( $this->mInfo['height'] ) ? intval( $this->mInfo['height'] ) : 0; |
107 | 107 | } |
108 | 108 | |
109 | 109 | public function getMetadata() { |