Changeset 3491:9aba899e5494 for admin/help.php
- Timestamp:
- 01/02/17 17:03:59 (9 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/help.php
r2720 r3491 15 15 dcPage::check('usage'); 16 16 17 function helpPage()17 $helpPage = function() 18 18 { 19 19 $ret = array('content' => '', 'title' => ''); … … 66 66 } 67 67 return $ret; 68 } 68 }; 69 69 70 70 $help_page = !empty($_GET['page']) ? html::escapeHTML($_GET['page']) : 'index'; 71 $content_array = helpPage($help_page);71 $content_array = $helpPage($help_page); 72 72 if (($content_array['content'] == '') || ($help_page == 'index')) { 73 $content_array = helpPage('index');73 $content_array = $helpPage('index'); 74 74 } 75 75 if ($content_array['title'] != '') {
Note: See TracChangeset
for help on using the changeset viewer.