Index: trunk/phase3/includes/templates/NoLocalSettings.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | } |
11 | 11 | |
12 | 12 | $scriptName = $_SERVER['SCRIPT_NAME']; |
13 | | -$ext = substr( $scriptName, strpos( $scriptName, "." ) + 1 ); |
| 13 | +$ext = substr( $scriptName, strrpos( $scriptName, "." ) + 1 ); |
14 | 14 | $path = ''; |
15 | 15 | # Add any directories in the main folder that could contain an entrypoint (even possibly). |
16 | 16 | # We cannot just do a dir listing here, as we do not know where it is yet |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -202,6 +202,7 @@ |
203 | 203 | * (bug 16335) __NONEWSECTIONLINK__ magic word to suppress new section link. |
204 | 204 | * (bug 17581) Wrong index name in PostgreSQL's updater: was rc_timestamp_nobot, |
205 | 205 | changed to rc_timestamp_bot |
| 206 | +* (bug 17437) Fixed incorrect link to web-based installer |
206 | 207 | |
207 | 208 | == API changes in 1.15 == |
208 | 209 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |