Index: trunk/extensions/Translate/utils/MessageTable.php |
— | — | @@ -119,7 +119,10 @@ |
120 | 120 | $optional = wfMsgHtml( 'translate-optional' ); |
121 | 121 | |
122 | 122 | $batch = new LinkBatch(); |
123 | | - $batch->setCaller( __METHOD__ ); |
| 123 | + if ( method_exists( $batch, 'setCaller' ) ) { |
| 124 | + $batch->setCaller( __METHOD__ ); |
| 125 | + } |
| 126 | + |
124 | 127 | $ns = $this->group->getNamespace(); |
125 | 128 | |
126 | 129 | foreach ( $this->collection->keys() as $key ) { |