Changeset 12949
- Timestamp:
- 11/12/11 11:50:10 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.10/amp_conf/htdocs/recordings/includes/common.php
r12167 r12949 10 10 */ 11 11 function checkErrorMessage() { 12 $ret = ''; 12 13 13 14 if ($_SESSION['ari_error']) { … … 273 274 global $loaded_modules; 274 275 276 $nav_menu = ''; 277 $subnav_menu = ''; 278 275 279 // check errors here and in login block 276 $content .= checkErrorMessage();280 $content = checkErrorMessage(); 277 281 278 282 // check logout … … 292 296 $m = $_REQUEST['m']; // module 293 297 $f = $_REQUEST['f']; // function 294 $a = $_REQUEST['a']; // action298 $a = isset($_REQUEST['a']) ? $_REQUEST['a'] : ''; // action 295 299 296 300 // set arguments freepbx/branches/2.10/amp_conf/htdocs/recordings/includes/display.php
r10734 r12949 69 69 */ 70 70 function displaySearchBlock($align,$m,$q,$url_opts,$focus) { 71 $option_text = ''; 72 $ret = ''; 71 73 72 74 // align … … 122 124 */ 123 125 function displayInfoBarBlock($controls,$q,$start,$span,$total) { 126 $ret = ''; 124 127 125 128 if ($total<$span) { … … 170 173 */ 171 174 function displayNavigationBlock($m,$q,$url_opts,$start,$span,$total) { 175 $ret = ''; 176 $middle_page_text = ''; 177 $option_text = ''; 172 178 173 179 $start = ($start=='' || !ctype_digit($start)) ? 0 : $start;
