Index: trunk/extensions/Translate/Message.php |
— | — | @@ -46,11 +46,11 @@ |
47 | 47 | return $this->definition; |
48 | 48 | } |
49 | 49 | public function translation() { |
50 | | - if ( !isset($this->row) ) return null; |
| 50 | + if ( !isset($this->row) ) return $this->infile(); |
51 | 51 | return Revision::getRevisionText( $this->row ); |
52 | 52 | } |
53 | 53 | public function author() { |
54 | | - if ( !isset($this->row) ) return $this->infile(); |
| 54 | + if ( !isset($this->row) ) return null; |
55 | 55 | return $this->row->rev_user_text; |
56 | 56 | } |
57 | 57 | |