Index: trunk/extensions/Autoincrement/Autoincrement.php |
— | — | @@ -14,7 +14,10 @@ |
15 | 15 | $wgExtensionCredits['variable'][] = array( |
16 | 16 | 'name' => 'Autoincrement', |
17 | 17 | 'description' => 'a variable hook that adds an autoincrementing variable, <nowiki>{{AUTOINCREMENT}}</nowiki>', |
18 | | - 'author' => 'Ævar Arnfjörð Bjarmason' |
| 18 | + 'author' => 'Ævar Arnfjörð Bjarmason', |
| 19 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:Autoincrement', |
| 20 | + 'svn-date' => '$LastChangedDate$', |
| 21 | + 'svn-revision' => '$LastChangedRevision$', |
19 | 22 | ); |
20 | 23 | |
21 | 24 | class Autoincrement { |
— | — | @@ -37,7 +40,7 @@ |
38 | 41 | } |
39 | 42 | |
40 | 43 | function wfAutoincrementHookRaw( &$raw ) { |
41 | | - $raw['autoincrement'] = array( 0, 'AUTOINCREMENT' );; |
| 44 | + $raw['autoincrement'] = array( 0, 'AUTOINCREMENT' ); |
42 | 45 | |
43 | 46 | return true; |
44 | 47 | } |
Property changes on: trunk/extensions/Autoincrement/Autoincrement.php |
___________________________________________________________________ |
Modified: svn:keywords |
45 | 48 | - Author Date Id Revision |
46 | 49 | + LastChangedDate LastChangedRevision |