diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-12 11:08:40 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-12 11:08:40 -0500 |
commit | 4c00c77739cc20db26d5f87bf26a9a953bc92d3a (patch) | |
tree | 2ebdf0595c49eed3ac136daf2fa6352fc8c0888c | |
parent | 946ab9aa75a3b45cc3f6ad17f5a1773bab4fa209 (diff) | |
download | forums-4c00c77739cc20db26d5f87bf26a9a953bc92d3a.tar forums-4c00c77739cc20db26d5f87bf26a9a953bc92d3a.tar.gz forums-4c00c77739cc20db26d5f87bf26a9a953bc92d3a.tar.bz2 forums-4c00c77739cc20db26d5f87bf26a9a953bc92d3a.tar.xz forums-4c00c77739cc20db26d5f87bf26a9a953bc92d3a.zip |
[ticket/11832] Changing comments to say app.php rather than index.php
PHPBB3-11832
-rw-r--r-- | phpBB/phpbb/filesystem.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/filesystem.php b/phpBB/phpbb/filesystem.php index a2dfab40e5..5d70b88a29 100644 --- a/phpBB/phpbb/filesystem.php +++ b/phpBB/phpbb/filesystem.php @@ -93,15 +93,15 @@ class phpbb_filesystem // Path info (e.g. /foo/bar) $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(); - // Script name URI (e.g. phpBB/index.php) + // Script name URI (e.g. phpBB/app.php) $script_name = $symfony_request->getScriptName(); /* * 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 === '/') { |