Index: trunk/extensions/Translate/scripts/magic-export.php |
— | — | @@ -42,7 +42,7 @@ |
43 | 43 | } |
44 | 44 | |
45 | 45 | $this->openHandles(); |
46 | | - // $this->writeHeaders(); |
| 46 | + $this->writeHeaders(); |
47 | 47 | $this->writeFiles(); |
48 | 48 | $this->writeFooters(); |
49 | 49 | $this->closeHandles(); |
— | — | @@ -138,28 +138,15 @@ |
139 | 139 | switch( $this->type ) { |
140 | 140 | case 'special': |
141 | 141 | fwrite( $handle, <<<PHP |
142 | | -<?php |
143 | | -/** |
144 | | - * Aliases for special pages |
145 | | - * |
146 | | - * @file |
147 | | - * @ingroup Extensions |
148 | | - */ |
149 | 142 | |
| 143 | + |
150 | 144 | \$specialPageAliases = array(); |
151 | 145 | PHP |
152 | 146 | ); |
153 | 147 | break; |
154 | 148 | case 'magic': |
155 | 149 | fwrite( $handle, <<<PHP |
156 | | -<?php |
157 | 150 | |
158 | | -/** |
159 | | - * Internationalisation file for magic words |
160 | | - * |
161 | | - * @file |
162 | | - * @ingroup Extensions |
163 | | - */ |
164 | 151 | |
165 | 152 | \$magicWords = array(); |
166 | 153 | PHP |