@@ -1,23 +1,23 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * AJAX: lists the complete configuration items as text/html. |
|
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 Thorsten Rinne <[email protected]> |
|
14 | - * @author Thomas Zeithaml <[email protected]> |
|
15 | - * @copyright 2005-2016 phpMyFAQ Team |
|
16 | - * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
17 | - * |
|
18 | - * @link http://www.phpmyfaq.de |
|
19 | - * @since 2005-12-26 |
|
20 | - */ |
|
3 | + * AJAX: lists the complete configuration items as text/html. |
|
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 Thorsten Rinne <[email protected]> |
|
14 | + * @author Thomas Zeithaml <[email protected]> |
|
15 | + * @copyright 2005-2016 phpMyFAQ Team |
|
16 | + * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
17 | + * |
|
18 | + * @link http://www.phpmyfaq.de |
|
19 | + * @since 2005-12-26 |
|
20 | + */ |
|
21 | 21 | if (!defined('IS_VALID_PHPMYFAQ')) { |
22 | 22 | $protocol = 'http'; |
23 | 23 | if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
@@ -108,8 +108,8 @@ discard block |
||
108 | 108 | echo PMF_Language::languageOptions( |
109 | 109 | str_replace( |
110 | 110 | array( |
111 | - 'language_', |
|
112 | - '.php', |
|
111 | + 'language_', |
|
112 | + '.php', |
|
113 | 113 | ), |
114 | 114 | '', |
115 | 115 | $faqConfig->get('main.language') |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | } else { |
121 | 121 | echo '<option value="language_en.php">English</option>'; |
122 | 122 | } |
123 | - break; |
|
123 | + break; |
|
124 | 124 | |
125 | 125 | case 'records.orderby': |
126 | 126 | echo PMF_Configuration::sortingOptions($faqConfig->get($key)); |
@@ -1,21 +1,21 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Adds a record in the database, handles the preview and checks for missing |
|
4 | - * category entries. |
|
5 | - * |
|
6 | - * PHP Version 5.5 |
|
7 | - * |
|
8 | - * This Source Code Form is subject to the terms of the Mozilla Public License, |
|
9 | - * v. 2.0. If a copy of the MPL was not distributed with this file, You can |
|
10 | - * obtain one at http://mozilla.org/MPL/2.0/. |
|
11 | - * |
|
12 | - * @category phpMyFAQ |
|
13 | - * @author Thorsten Rinne <[email protected]> |
|
14 | - * @copyright 2003-2016 phpMyFAQ Team |
|
15 | - * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
16 | - * @link http://www.phpmyfaq.de |
|
17 | - * @since 2003-02-23 |
|
18 | - */ |
|
3 | + * Adds a record in the database, handles the preview and checks for missing |
|
4 | + * category entries. |
|
5 | + * |
|
6 | + * PHP Version 5.5 |
|
7 | + * |
|
8 | + * This Source Code Form is subject to the terms of the Mozilla Public License, |
|
9 | + * v. 2.0. If a copy of the MPL was not distributed with this file, You can |
|
10 | + * obtain one at http://mozilla.org/MPL/2.0/. |
|
11 | + * |
|
12 | + * @category phpMyFAQ |
|
13 | + * @author Thorsten Rinne <[email protected]> |
|
14 | + * @copyright 2003-2016 phpMyFAQ Team |
|
15 | + * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
16 | + * @link http://www.phpmyfaq.de |
|
17 | + * @since 2003-02-23 |
|
18 | + */ |
|
19 | 19 | if (!defined('IS_VALID_PHPMYFAQ')) { |
20 | 20 | $protocol = 'http'; |
21 | 21 | if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
@@ -1,20 +1,20 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Save an existing FAQ record. |
|
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 | - * @author Thorsten Rinne <[email protected]> |
|
13 | - * @copyright 2003-2016 phpMyFAQ Team |
|
14 | - * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
15 | - * @link http://www.phpmyfaq.de |
|
16 | - * @since 2003-02-23 |
|
17 | - */ |
|
3 | + * Save an existing FAQ record. |
|
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 | + * @author Thorsten Rinne <[email protected]> |
|
13 | + * @copyright 2003-2016 phpMyFAQ Team |
|
14 | + * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
15 | + * @link http://www.phpmyfaq.de |
|
16 | + * @since 2003-02-23 |
|
17 | + */ |
|
18 | 18 | if (!defined('IS_VALID_PHPMYFAQ')) { |
19 | 19 | $protocol = 'http'; |
20 | 20 | if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
@@ -1,20 +1,20 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Frontend for Backup and Restore. |
|
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 | - * @author Thorsten Rinne <[email protected]> |
|
13 | - * @copyright 2003-2016 phpMyFAQ Team |
|
14 | - * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
15 | - * @link http://www.phpmyfaq.de |
|
16 | - * @since 2003-02-24 |
|
17 | - */ |
|
3 | + * Frontend for Backup and Restore. |
|
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 | + * @author Thorsten Rinne <[email protected]> |
|
13 | + * @copyright 2003-2016 phpMyFAQ Team |
|
14 | + * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
15 | + * @link http://www.phpmyfaq.de |
|
16 | + * @since 2003-02-24 |
|
17 | + */ |
|
18 | 18 | if (!defined('IS_VALID_PHPMYFAQ')) { |
19 | 19 | $protocol = 'http'; |
20 | 20 | if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
@@ -1,21 +1,21 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * The main statistics page. |
|
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 | - * @author Thorsten Rinne <[email protected]> |
|
13 | - * @author Matteo Scaramuccia <[email protected]> |
|
14 | - * @copyright 2003-2016 phpMyFAQ Team |
|
15 | - * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
16 | - * @link http://www.phpmyfaq.de |
|
17 | - * @since 2003-02-24 |
|
18 | - */ |
|
3 | + * The main statistics page. |
|
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 | + * @author Thorsten Rinne <[email protected]> |
|
13 | + * @author Matteo Scaramuccia <[email protected]> |
|
14 | + * @copyright 2003-2016 phpMyFAQ Team |
|
15 | + * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
|
16 | + * @link http://www.phpmyfaq.de |
|
17 | + * @since 2003-02-24 |
|
18 | + */ |
|
19 | 19 | if (!defined('IS_VALID_PHPMYFAQ')) { |
20 | 20 | $protocol = 'http'; |
21 | 21 | if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
@@ -134,7 +134,7 @@ |
||
134 | 134 | </tr> |
135 | 135 | <tr> |
136 | 136 | <td><?php echo $PMF_LANG['ad_stat_vpd'] ?>:</td> |
137 | - <td><?php echo ($danz != 0) ? round(($vanz / $danz), 2) : 0 ?></td> |
|
137 | + <td><?php echo ($danz != 0) ? round(($vanz/$danz), 2) : 0 ?></td> |
|
138 | 138 | </tr> |
139 | 139 | <tr> |
140 | 140 | <td><?php echo $PMF_LANG['ad_stat_fien'] ?>:</td> |
@@ -36,7 +36,7 @@ |
||
36 | 36 | <i aria-hidden="true" class="fa fa-plus fa-fw"></i> <?php echo $PMF_LANG['ad_kateg_add']; ?> |
37 | 37 | </a> |
38 | 38 | <a class="btn btn-info" href="?action=showcategory"> |
39 | - <i aria-hidden="true" class="fa fa-th fa-fw"></i> <?php echo $PMF_LANG['ad_categ_show'];?> |
|
39 | + <i aria-hidden="true" class="fa fa-th fa-fw"></i> <?php echo $PMF_LANG['ad_categ_show']; ?> |
|
40 | 40 | </a> |
41 | 41 | </div> |
42 | 42 | </h2> |
@@ -1,22 +1,22 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * List all categories in the admin section. |
|
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 Thorsten Rinne <[email protected]> |
|
14 | - * @copyright 2003-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 2003-12-20 |
|
19 | - */ |
|
3 | + * List all categories in the admin section. |
|
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 Thorsten Rinne <[email protected]> |
|
14 | + * @copyright 2003-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 2003-12-20 |
|
19 | + */ |
|
20 | 20 | if (!defined('IS_VALID_PHPMYFAQ')) { |
21 | 21 | $protocol = 'http'; |
22 | 22 | if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
@@ -321,19 +321,19 @@ discard block |
||
321 | 321 | |
322 | 322 | if ($cat['lang'] == $lang) { |
323 | 323 | // add sub category (if current language) |
324 | - printf(' |
|
324 | + printf(' |
|
325 | 325 | <a class="btn btn-info btn-sm" href="?action=addcategory&cat=%s&lang=%s"><span title="%s" class="fa fa-plus fa-fw"></span></a> ', |
326 | - $cat['id'], |
|
327 | - $cat['lang'], |
|
328 | - $PMF_LANG['ad_quick_category'] |
|
329 | - ); |
|
326 | + $cat['id'], |
|
327 | + $cat['lang'], |
|
328 | + $PMF_LANG['ad_quick_category'] |
|
329 | + ); |
|
330 | 330 | |
331 | - // rename (sub) category (if current language) |
|
332 | - printf(' |
|
331 | + // rename (sub) category (if current language) |
|
332 | + printf(' |
|
333 | 333 | <a class="btn btn-info btn-sm" href="?action=editcategory&cat=%s"><span title="%s" class="fa fa-edit fa-fw"></a> ', |
334 | - $cat['id'], |
|
335 | - $PMF_LANG['ad_kateg_rename'] |
|
336 | - ); |
|
334 | + $cat['id'], |
|
335 | + $PMF_LANG['ad_kateg_rename'] |
|
336 | + ); |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | // translate category (always) |
@@ -357,20 +357,20 @@ discard block |
||
357 | 357 | |
358 | 358 | if ($cat['lang'] == $lang) { |
359 | 359 | // cut category (if current language) |
360 | - printf( |
|
361 | - '<a class="btn btn-warning btn-sm" href="?action=cutcategory&cat=%s"><span title="%s" class="fa fa-cut fa-fw"></a> ', |
|
362 | - $cat['id'], |
|
363 | - $PMF_LANG['ad_categ_cut'] |
|
364 | - ); |
|
360 | + printf( |
|
361 | + '<a class="btn btn-warning btn-sm" href="?action=cutcategory&cat=%s"><span title="%s" class="fa fa-cut fa-fw"></a> ', |
|
362 | + $cat['id'], |
|
363 | + $PMF_LANG['ad_categ_cut'] |
|
364 | + ); |
|
365 | 365 | |
366 | 366 | if ($category->numParent($cat['parent_id']) > 1) { |
367 | 367 | // move category (if current language) AND more than 1 category at the same level) |
368 | - printf( |
|
369 | - '<a class="btn btn-warning btn-sm" href="?action=movecategory&cat=%s&parent_id=%s"><span title="%s" class="fa fa-sort fa-fw"></a> ', |
|
370 | - $cat['id'], |
|
371 | - $cat['parent_id'], |
|
372 | - $PMF_LANG['ad_categ_move'] |
|
373 | - ); |
|
368 | + printf( |
|
369 | + '<a class="btn btn-warning btn-sm" href="?action=movecategory&cat=%s&parent_id=%s"><span title="%s" class="fa fa-sort fa-fw"></a> ', |
|
370 | + $cat['id'], |
|
371 | + $cat['parent_id'], |
|
372 | + $PMF_LANG['ad_categ_move'] |
|
373 | + ); |
|
374 | 374 | } |
375 | 375 | } |
376 | 376 |
@@ -64,7 +64,7 @@ |
||
64 | 64 | 'writeNumberOfArticles' => $plr->getMsg('plmsgHomeArticlesOnline', $faq->getNumberOfRecords($LANGCODE)), |
65 | 65 | 'writeSendAdress' => '?'.$sids.'action=search', |
66 | 66 | 'searchBox' => $PMF_LANG['msgSearch'], |
67 | - 'categoryId' => ($cat === 0) ? '%' : (int) $cat, |
|
67 | + 'categoryId' => ($cat === 0) ? '%' : (int)$cat, |
|
68 | 68 | 'msgSearch' => sprintf( |
69 | 69 | '<a class="help" href="%sindex.php?action=search">%s</a>', |
70 | 70 | $faqSystem->getSystemUri($faqConfig), |
@@ -1,22 +1,22 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Select a category to move. |
|
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 Thorsten Rinne <[email protected]> |
|
14 | - * @copyright 2004-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 2004-04-29 |
|
19 | - */ |
|
3 | + * Select a category to move. |
|
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 Thorsten Rinne <[email protected]> |
|
14 | + * @copyright 2004-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 2004-04-29 |
|
19 | + */ |
|
20 | 20 | if (!defined('IS_VALID_PHPMYFAQ')) { |
21 | 21 | $protocol = 'http'; |
22 | 22 | if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
@@ -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__))); |