Index: trunk/extensions/LdapAuthentication/LdapAuthentication.php |
— | — | @@ -88,13 +88,15 @@ |
89 | 89 | $wgLDAPUniqueBlockLogin = array(); //Currently unused |
90 | 90 | $wgLDAPUniqueRenameUser = array(); //Currently unused |
91 | 91 | |
| 92 | +define( "LDAPAUTHVERSION", "1.2d" ); |
| 93 | + |
92 | 94 | /** |
93 | 95 | * Add extension information to Special:Version |
94 | 96 | */ |
95 | 97 | $wgExtensionCredits['other'][] = array( |
96 | 98 | 'path' => __FILE__, |
97 | 99 | 'name' => 'LDAP Authentication Plugin', |
98 | | - 'version' => '1.2d', |
| 100 | + 'version' => LDAPAUTHVERSION, |
99 | 101 | 'author' => 'Ryan Lane', |
100 | 102 | 'descriptionmsg' => 'ldapauthentication-desc', |
101 | 103 | 'url' => 'http://www.mediawiki.org/wiki/Extension:LDAP_Authentication', |
— | — | @@ -1699,7 +1701,7 @@ |
1700 | 1702 | if ( isset( $debugArr ) ) { |
1701 | 1703 | $debugText = $debugText . " " . implode( "::", $debugArr ); |
1702 | 1704 | } |
1703 | | - wfDebugLog( 'ldap', $debugText, false ); |
| 1705 | + wfDebugLog( 'ldap', LDAPAUTHVERSION . ' ' . $debugText, false ); |
1704 | 1706 | } |
1705 | 1707 | } |
1706 | 1708 | |