[ticket/11832] Changing comments to say app.php rather than index.php

PHPBB3-11832
This commit is contained in:
Nathan Guse 2013-09-12 11:08:40 -05:00
parent 946ab9aa75
commit 4c00c77739

View file

@ -93,15 +93,15 @@ class phpbb_filesystem
// Path info (e.g. /foo/bar) // Path info (e.g. /foo/bar)
$path_info = $this->clean_path($symfony_request->getPathInfo()); $path_info = $this->clean_path($symfony_request->getPathInfo());
// Full request URI (e.g. phpBB/index.php/foo/bar) // Full request URI (e.g. phpBB/app.php/foo/bar)
$request_uri = $symfony_request->getRequestUri(); $request_uri = $symfony_request->getRequestUri();
// Script name URI (e.g. phpBB/index.php) // Script name URI (e.g. phpBB/app.php)
$script_name = $symfony_request->getScriptName(); $script_name = $symfony_request->getScriptName();
/* /*
* If the path info is empty (single /), then we're not using * If the path info is empty (single /), then we're not using
* a route like index.php/foo/bar * a route like app.php/foo/bar
*/ */
if ($path_info === '/') if ($path_info === '/')
{ {