Index: trunk/extensions/ArchiveLinks/ArchiveLinks.class.php |
— | — | @@ -237,38 +237,39 @@ |
238 | 238 | } |
239 | 239 | } |
240 | 240 | |
241 | | - public static function schemaUpdate ( $updater = null ) { |
| 241 | + public static function schemaUpdates ( $updater = null ) { |
242 | 242 | $path = dirname( __FILE__ ); |
243 | | - $updater->addExtesionUpdate( array( |
| 243 | + $updater->addExtensionUpdate( array( |
244 | 244 | 'addTable', |
245 | 245 | 'el_archive_link_history', |
246 | 246 | $path . '/setuptables.sql', |
247 | 247 | true |
248 | 248 | )); |
249 | | - $updater->addExtesionUpdate( array( |
| 249 | + $updater->addExtensionUpdate( array( |
250 | 250 | 'addTable', |
251 | 251 | 'el_archive_queue', |
252 | 252 | $path . '/setuptables.sql', |
253 | 253 | true |
254 | 254 | )); |
255 | | - $updater->addExtesionUpdate( array( |
| 255 | + $updater->addExtensionUpdate( array( |
256 | 256 | 'addTable', |
257 | 257 | 'el_archive_log', |
258 | 258 | $path . '/setuptables.sql', |
259 | 259 | true |
260 | 260 | )); |
261 | | - $updater->addExtesionUpdate( array( |
| 261 | + $updater->addExtensionUpdate( array( |
262 | 262 | 'addTable', |
263 | 263 | 'el_archive_resource', |
264 | 264 | $path . '/setuptables.sql', |
265 | 265 | true |
266 | 266 | )); |
267 | | - $updater->addExtesionUpdate( array( |
| 267 | + $updater->addExtensionUpdate( array( |
268 | 268 | 'addTable', |
269 | 269 | 'el_archive_link_blacklist', |
270 | 270 | $path . '/setuptables.sql', |
271 | 271 | true |
272 | | - )); |
| 272 | + )); |
| 273 | + return true; |
273 | 274 | } |
274 | 275 | } |
275 | 276 | |