diff options
author | Waldir Pimenta <waldir@email.com> | 2013-02-15 07:31:48 +0000 |
---|---|---|
committer | Krinkle <krinklemail@gmail.com> | 2014-03-28 01:05:30 +0000 |
commit | 86a9b8c06c446d4afa688bc81832813e0f8e32df (patch) | |
tree | e0d883d685cc23f8f5e84f84348273a66ea10401 /profileinfo.php5 | |
parent | dc27e4cd0f74a09b95866de877011387c3f1b9e7 (diff) | |
download | mediawikicore-86a9b8c06c446d4afa688bc81832813e0f8e32df.tar.gz mediawikicore-86a9b8c06c446d4afa688bc81832813e0f8e32df.zip |
Clean up access points
* Harmonize spacing
* Use // for comments rather than #
* Harmonize call style for 'require', 'include' etc.
* Add missing profileinfo.php5
* Use "./" for path to api.php in api.php5 (to match other php5 files).
* Move documentation related to Setup.php from index.php to WebStart.php
* Remove "Initialise common code." comment in api.php (was already remove
in most entry points)
Change-Id: I8dc4a79fd13cee49e34f250a4039b3666bd42aca
Diffstat (limited to 'profileinfo.php5')
-rw-r--r-- | profileinfo.php5 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/profileinfo.php5 b/profileinfo.php5 new file mode 100644 index 000000000000..14ef42143593 --- /dev/null +++ b/profileinfo.php5 @@ -0,0 +1,24 @@ +<?php +/** + * Version of profileinfo.php to be used in web servers that require the .php5 + * extension to execute scripts with the PHP5 engine. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * + * @file + */ + +require './profileinfo.php'; |