Index: branches/REL1_14/phase3/includes/templates/NoLocalSettings.php |
— | — | @@ -12,7 +12,7 @@ |
13 | 13 | } |
14 | 14 | |
15 | 15 | $scriptName = $_SERVER['SCRIPT_NAME']; |
16 | | -$ext = substr( $scriptName, strpos( $scriptName, "." ) + 1 ); |
| 16 | +$ext = substr( $scriptName, strrpos( $scriptName, "." ) + 1 ); |
17 | 17 | $path = ''; |
18 | 18 | # Add any directories in the main folder that could contain an entrypoint (even possibly). |
19 | 19 | # We cannot just do a dir listing here, as we do not know where it is yet |
Index: branches/REL1_14/phase3/RELEASE-NOTES |
— | — | @@ -29,6 +29,7 @@ |
30 | 30 | * Fixed performance of the backlinks API module |
31 | 31 | * (bug 17420) Send the correct content type from action=raw when the HTML file |
32 | 32 | cache is enabled. |
| 33 | +* (bug 17437) Fixed incorrect link to web-based installer |
33 | 34 | |
34 | 35 | === Configuration changes in 1.14 === |
35 | 36 | |