@@ -1,28 +1,28 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * The main phpMyFAQ Setup. |
|
4 | - * |
|
5 | - * This script checks the complete environment, writes the database connection |
|
6 | - * parameters into the file config/database.php and the configuration into the database. |
|
7 | - * |
|
8 | - * PHP Version 5.5 |
|
9 | - * |
|
10 | - * This Source Code Form is subject to the terms of the Mozilla Public License, |
|
11 | - * v. 2.0. If a copy of the MPL was not distributed with this file, You can |
|
12 | - * obtain one at http://mozilla.org/MPL/2.0/. |
|
13 | - * |
|
14 | - * @category phpMyFAQ |
|
15 | - * @author Thorsten Rinne <[email protected]> |
|
16 | - * @author Tom Rochester <[email protected]> |
|
17 | - * @author Johannes Schlüter <[email protected]> |
|
18 | - * @author Uwe Pries <[email protected]> |
|
19 | - * @author Matteo Scaramuccia <[email protected]> |
|
20 | - * @author Florian Anderiasch <[email protected]> |
|
21 | - * @copyright 2002-2016 phpMyFAQ Team |
|
22 | - * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
23 | - * @link http://www.phpmyfaq.de |
|
24 | - * @since 2002-08-20 |
|
25 | - */ |
|
3 | + * The main phpMyFAQ Setup. |
|
4 | + * |
|
5 | + * This script checks the complete environment, writes the database connection |
|
6 | + * parameters into the file config/database.php and the configuration into the database. |
|
7 | + * |
|
8 | + * PHP Version 5.5 |
|
9 | + * |
|
10 | + * This Source Code Form is subject to the terms of the Mozilla Public License, |
|
11 | + * v. 2.0. If a copy of the MPL was not distributed with this file, You can |
|
12 | + * obtain one at http://mozilla.org/MPL/2.0/. |
|
13 | + * |
|
14 | + * @category phpMyFAQ |
|
15 | + * @author Thorsten Rinne <[email protected]> |
|
16 | + * @author Tom Rochester <[email protected]> |
|
17 | + * @author Johannes Schlüter <[email protected]> |
|
18 | + * @author Uwe Pries <[email protected]> |
|
19 | + * @author Matteo Scaramuccia <[email protected]> |
|
20 | + * @author Florian Anderiasch <[email protected]> |
|
21 | + * @copyright 2002-2016 phpMyFAQ Team |
|
22 | + * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
23 | + * @link http://www.phpmyfaq.de |
|
24 | + * @since 2002-08-20 |
|
25 | + */ |
|
26 | 26 | |
27 | 27 | define('COPYRIGHT', '© 2001-2015 <a href="http://www.phpmyfaq.de/">phpMyFAQ Team</a> | Follow us on <a href="http://twitter.com/phpMyFAQ">Twitter</a> | All rights reserved.'); |
28 | 28 | define('PMF_ROOT_DIR', dirname(dirname(__FILE__))); |
@@ -1,22 +1,22 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Read in files for the translation and show them inside a form. |
|
4 | - * |
|
5 | - * PHP Version 5.5 |
|
6 | - * |
|
7 | - * This Source Code Form is subject to the terms of the Mozilla Public License, |
|
8 | - * v. 2.0. If a copy of the MPL was not distributed with this file, You can |
|
9 | - * obtain one at http://mozilla.org/MPL/2.0/. |
|
10 | - * |
|
11 | - * @category phpMyFAQ |
|
12 | - * |
|
13 | - * @author Anatoliy Belsky <[email protected]> |
|
14 | - * @copyright 2009-2016 phpMyFAQ Team |
|
15 | - * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
16 | - * |
|
17 | - * @link http://www.phpmyfaq.de |
|
18 | - * @since 2009-05-11 |
|
19 | - */ |
|
3 | + * Read in files for the translation and show them inside a form. |
|
4 | + * |
|
5 | + * PHP Version 5.5 |
|
6 | + * |
|
7 | + * This Source Code Form is subject to the terms of the Mozilla Public License, |
|
8 | + * v. 2.0. If a copy of the MPL was not distributed with this file, You can |
|
9 | + * obtain one at http://mozilla.org/MPL/2.0/. |
|
10 | + * |
|
11 | + * @category phpMyFAQ |
|
12 | + * |
|
13 | + * @author Anatoliy Belsky <[email protected]> |
|
14 | + * @copyright 2009-2016 phpMyFAQ Team |
|
15 | + * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
16 | + * |
|
17 | + * @link http://www.phpmyfaq.de |
|
18 | + * @since 2009-05-11 |
|
19 | + */ |
|
20 | 20 | if (!defined('IS_VALID_PHPMYFAQ')) { |
21 | 21 | $protocol = 'http'; |
22 | 22 | if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
@@ -62,7 +62,7 @@ |
||
62 | 62 | } |
63 | 63 | } else { |
64 | 64 | $user = PMF_User_CurrentUser::getFromCookie($faqConfig); |
65 | - if (! $user instanceof PMF_User_CurrentUser) { |
|
65 | + if (!$user instanceof PMF_User_CurrentUser) { |
|
66 | 66 | $user = PMF_User_CurrentUser::getFromSession($faqConfig); |
67 | 67 | } |
68 | 68 | } |