@@ -65,21 +65,37 @@ |
||
| 65 | 65 | $_['macintosh'] = 'Western European (Mac) - macintosh'; |
| 66 | 66 | $_['Windows-1252'] = 'Western European (Windows) - Windows-1252'; |
| 67 | 67 | |
| 68 | -if($modx_charset == 'euc-jp') $_['euc-jp'] = 'Japanese (EUC) - euc-jp'; |
|
| 69 | -elseif($modx_charset == 'shift_jis') $_['shift_jis'] = 'Japanese (Shift-JIS) - shift_jis'; |
|
| 70 | -elseif($modx_charset == 'iso-2022-jp') $_['iso-2022-jp'] = 'Japanese (JIS-Allow 1 byte Kana - SO/SI) - iso-2022-jp'; |
|
| 71 | -elseif($modx_charset == 'csISO2022JP') $_['csISO2022JP'] = 'Japanese (JIS-Allow 1 byte Kana) - csISO2022JP'; |
|
| 72 | -elseif($modx_charset == 'EUC-CN') $_['EUC-CN'] = 'Chinese Simplified (EUC) - EUC-CN'; |
|
| 73 | -elseif($modx_charset == 'hz-gb-2312') $_['hz-gb-2312'] = 'Chinese Simplified (HZ) - hz-gb-2312'; |
|
| 74 | -elseif($modx_charset == 'x-mac-chinesesimp') $_['x-mac-chinesesimp'] = 'Chinese Simplified (Mac) - x-mac-chinesesimp'; |
|
| 75 | -elseif($modx_charset == 'x-Chinese-CNS') $_['x-Chinese-CNS'] = 'Chinese Traditional (CNS) - x-Chinese-CNS'; |
|
| 76 | -elseif($modx_charset == 'x-Chinese-Eten') $_['x-Chinese-Eten'] = 'Chinese Traditional (Eten) - x-Chinese-Eten'; |
|
| 77 | -elseif($modx_charset == 'x-mac-chinesetrad') $_['x-mac-chinesetrad'] = 'Chinese Traditional (Mac) - x-mac-chinesetrad'; |
|
| 78 | -elseif($modx_charset == 'ks_c_5601-1987') $_['ks_c_5601-1987'] = 'Korean - ks_c_5601-1987'; |
|
| 79 | -elseif($modx_charset == 'euc-kr') $_['euc-kr'] = 'Korean (EUC) - euc-kr'; |
|
| 80 | -elseif($modx_charset == 'iso-2022-kr') $_['iso-2022-kr'] = 'Korean (ISO) - iso-2022-kr'; |
|
| 81 | -elseif($modx_charset == 'Johab') $_['Johab'] = 'Korean (Johab) - Johab'; |
|
| 82 | -elseif($modx_charset == 'x-mac-korean') $_['x-mac-korean'] = 'Korean (Mac) - x-mac-korean'; |
|
| 68 | +if($modx_charset == 'euc-jp') { |
|
| 69 | + $_['euc-jp'] = 'Japanese (EUC) - euc-jp'; |
|
| 70 | +} elseif($modx_charset == 'shift_jis') { |
|
| 71 | + $_['shift_jis'] = 'Japanese (Shift-JIS) - shift_jis'; |
|
| 72 | +} elseif($modx_charset == 'iso-2022-jp') { |
|
| 73 | + $_['iso-2022-jp'] = 'Japanese (JIS-Allow 1 byte Kana - SO/SI) - iso-2022-jp'; |
|
| 74 | +} elseif($modx_charset == 'csISO2022JP') { |
|
| 75 | + $_['csISO2022JP'] = 'Japanese (JIS-Allow 1 byte Kana) - csISO2022JP'; |
|
| 76 | +} elseif($modx_charset == 'EUC-CN') { |
|
| 77 | + $_['EUC-CN'] = 'Chinese Simplified (EUC) - EUC-CN'; |
|
| 78 | +} elseif($modx_charset == 'hz-gb-2312') { |
|
| 79 | + $_['hz-gb-2312'] = 'Chinese Simplified (HZ) - hz-gb-2312'; |
|
| 80 | +} elseif($modx_charset == 'x-mac-chinesesimp') { |
|
| 81 | + $_['x-mac-chinesesimp'] = 'Chinese Simplified (Mac) - x-mac-chinesesimp'; |
|
| 82 | +} elseif($modx_charset == 'x-Chinese-CNS') { |
|
| 83 | + $_['x-Chinese-CNS'] = 'Chinese Traditional (CNS) - x-Chinese-CNS'; |
|
| 84 | +} elseif($modx_charset == 'x-Chinese-Eten') { |
|
| 85 | + $_['x-Chinese-Eten'] = 'Chinese Traditional (Eten) - x-Chinese-Eten'; |
|
| 86 | +} elseif($modx_charset == 'x-mac-chinesetrad') { |
|
| 87 | + $_['x-mac-chinesetrad'] = 'Chinese Traditional (Mac) - x-mac-chinesetrad'; |
|
| 88 | +} elseif($modx_charset == 'ks_c_5601-1987') { |
|
| 89 | + $_['ks_c_5601-1987'] = 'Korean - ks_c_5601-1987'; |
|
| 90 | +} elseif($modx_charset == 'euc-kr') { |
|
| 91 | + $_['euc-kr'] = 'Korean (EUC) - euc-kr'; |
|
| 92 | +} elseif($modx_charset == 'iso-2022-kr') { |
|
| 93 | + $_['iso-2022-kr'] = 'Korean (ISO) - iso-2022-kr'; |
|
| 94 | +} elseif($modx_charset == 'Johab') { |
|
| 95 | + $_['Johab'] = 'Korean (Johab) - Johab'; |
|
| 96 | +} elseif($modx_charset == 'x-mac-korean') { |
|
| 97 | + $_['x-mac-korean'] = 'Korean (Mac) - x-mac-korean'; |
|
| 98 | +} |
|
| 83 | 99 | |
| 84 | 100 | $tpl = '<option value="%s" %s>%s</option>'; |
| 85 | 101 | $options = array(); |
@@ -344,7 +344,8 @@ |
||
| 344 | 344 | protected function sendString($string) |
| 345 | 345 | { |
| 346 | 346 | if ($this->pop_conn) { |
| 347 | - if ($this->do_debug >= 2) { //Show client messages when debug >= 2 |
|
| 347 | + if ($this->do_debug >= 2) { |
|
| 348 | +//Show client messages when debug >= 2 |
|
| 348 | 349 | echo 'Client -> Server: ', $string; |
| 349 | 350 | } |
| 350 | 351 | |
@@ -2059,7 +2059,8 @@ discard block |
||
| 2059 | 2059 | */ |
| 2060 | 2060 | public function addrFormat($addr) |
| 2061 | 2061 | { |
| 2062 | - if (empty($addr[1])) { // No name provided |
|
| 2062 | + if (empty($addr[1])) { |
|
| 2063 | +// No name provided |
|
| 2063 | 2064 | return $this->secureHeader($addr[0]); |
| 2064 | 2065 | } |
| 2065 | 2066 | |
@@ -3425,7 +3426,7 @@ discard block |
||
| 3425 | 3426 | { |
| 3426 | 3427 | $this->RecipientsQueue = array_filter( |
| 3427 | 3428 | $this->RecipientsQueue, |
| 3428 | - function ($params) use ($kind) { |
|
| 3429 | + function ($params) use ($kind){ |
|
| 3429 | 3430 | return $params[0] != $kind; |
| 3430 | 3431 | } |
| 3431 | 3432 | ); |
@@ -1,16 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | $pattern = '/<img[\s\n]+.*src=[\s\n]*"([^"]+\.(jpg|jpeg|png|gif))"[^>]+>/i'; |
| 3 | 3 | preg_match_all($pattern , $value , $images); |
| 4 | -if($opt==='') |
|
| 5 | -{ |
|
| 6 | - if($images[1][0]) return $images[1][0]; |
|
| 7 | - else return ''; |
|
| 8 | -} |
|
| 9 | -else |
|
| 10 | -{ |
|
| 11 | - foreach($images[0] as $i=>$image) |
|
| 12 | - { |
|
| 13 | - if(strpos($image,$opt)!==false) return $images[1][$i]; |
|
| 4 | +if($opt==='') { |
|
| 5 | + if($images[1][0]) { |
|
| 6 | + return $images[1][0]; |
|
| 7 | + } else { |
|
| 8 | + return ''; |
|
| 9 | + } |
|
| 10 | + } else { |
|
| 11 | + foreach($images[0] as $i=>$image) { |
|
| 12 | + if(strpos($image,$opt)!==false) { |
|
| 13 | + return $images[1][$i]; |
|
| 14 | + } |
|
| 14 | 15 | } |
| 15 | 16 | } |
| 16 | 17 | |
@@ -9,14 +9,15 @@ |
||
| 9 | 9 | $blockElms = explode(',', $blockElms); |
| 10 | 10 | $lines = explode("\n",$text); |
| 11 | 11 | $c = count($lines); |
| 12 | -foreach($lines as $i=>$line) |
|
| 13 | -{ |
|
| 12 | +foreach($lines as $i=>$line) { |
|
| 14 | 13 | $line = rtrim($line); |
| 15 | - if($i===$c-1) break; |
|
| 16 | - foreach($blockElms as $block) |
|
| 17 | - { |
|
| 18 | - if(preg_match("@</?{$block}" . '[^>]*>$@',$line)) |
|
| 19 | - continue 2; |
|
| 14 | + if($i===$c-1) { |
|
| 15 | + break; |
|
| 16 | + } |
|
| 17 | + foreach($blockElms as $block) { |
|
| 18 | + if(preg_match("@</?{$block}" . '[^>]*>$@',$line)) { |
|
| 19 | + continue 2; |
|
| 20 | + } |
|
| 20 | 21 | } |
| 21 | 22 | $lines[$i] = "{$line}<br />"; |
| 22 | 23 | } |
@@ -5,11 +5,14 @@ discard block |
||
| 5 | 5 | $groupNames = ($this->strlen($opt) > 0 ) ? explode(',',$opt) : array(); |
| 6 | 6 | |
| 7 | 7 | // if $groupNames is not an array return false |
| 8 | -if(!is_array($groupNames)) return 0; |
|
| 8 | +if(!is_array($groupNames)) { |
|
| 9 | + return 0; |
|
| 10 | +} |
|
| 9 | 11 | |
| 10 | 12 | // Creates an array with all webgroups the user id is in |
| 11 | -if (isset($modx->filter->cache['mo'][$userID])) $grpNames = $modx->filter->cache['mo'][$userID]; |
|
| 12 | -else { |
|
| 13 | +if (isset($modx->filter->cache['mo'][$userID])) { |
|
| 14 | + $grpNames = $modx->filter->cache['mo'][$userID]; |
|
| 15 | +} else { |
|
| 13 | 16 | $from = sprintf("[+prefix+]webgroup_names wgn INNER JOIN [+prefix+]web_groups wg ON wg.webgroup=wgn.id AND wg.webuser='%s'",$userID); |
| 14 | 17 | $rs = $modx->db->select('wgn.name',$from); |
| 15 | 18 | $modx->filter->cache['mo'][$userID] = $grpNames = $modx->db->getColumn('name',$rs); |
@@ -17,8 +20,10 @@ discard block |
||
| 17 | 20 | |
| 18 | 21 | // Check if a supplied group matches a webgroup from the array we just created |
| 19 | 22 | foreach($groupNames as $k=>$v) { |
| 20 | - if(in_array(trim($v),$grpNames)) return 1; |
|
| 21 | -} |
|
| 23 | + if(in_array(trim($v),$grpNames)) { |
|
| 24 | + return 1; |
|
| 25 | + } |
|
| 26 | + } |
|
| 22 | 27 | |
| 23 | 28 | // If we get here the above logic did not find a match, so return false |
| 24 | 29 | return 0; |
@@ -1,19 +1,22 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! function_exists('f_owc')){ |
|
| 2 | +if( ! function_exists('f_owc')) { |
|
| 3 | 3 | /** |
| 4 | 4 | * @param $path |
| 5 | 5 | * @param $data |
| 6 | 6 | * @param null|int $mode |
| 7 | 7 | */ |
| 8 | - function f_owc($path, $data, $mode = null){ |
|
| 8 | + function f_owc($path, $data, $mode = null) |
|
| 9 | + { |
|
| 9 | 10 | try { |
| 10 | 11 | // make an attempt to create the file |
| 11 | 12 | $hnd = fopen($path, 'w'); |
| 12 | 13 | fwrite($hnd, $data); |
| 13 | 14 | fclose($hnd); |
| 14 | 15 | |
| 15 | - if(null !== $mode) chmod($path, $mode); |
|
| 16 | - }catch(Exception $e){ |
|
| 16 | + if(null !== $mode) { |
|
| 17 | + chmod($path, $mode); |
|
| 18 | + } |
|
| 19 | + } catch(Exception $e) { |
|
| 17 | 20 | // Nothing, this is NOT normal |
| 18 | 21 | unset($e); |
| 19 | 22 | } |
@@ -21,7 +24,9 @@ discard block |
||
| 21 | 24 | } |
| 22 | 25 | |
| 23 | 26 | $installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
| 24 | -if( ! isset($_lang)) $_lang = array(); |
|
| 27 | +if( ! isset($_lang)) { |
|
| 28 | + $_lang = array(); |
|
| 29 | +} |
|
| 25 | 30 | |
| 26 | 31 | echo '<div class="stepcontainer"> |
| 27 | 32 | <ul class="progressbar"> |
@@ -57,7 +62,7 @@ discard block |
||
| 57 | 62 | // check if iconv is available |
| 58 | 63 | echo '<p>' . $_lang['checking_iconv']; |
| 59 | 64 | $iconv = (int) function_exists('iconv'); |
| 60 | -if ($iconv == '0'){ |
|
| 65 | +if ($iconv == '0') { |
|
| 61 | 66 | echo '<span class="notok">' . $_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
| 62 | 67 | $errors++; |
| 63 | 68 | } else { |
@@ -119,7 +124,7 @@ discard block |
||
| 119 | 124 | |
| 120 | 125 | // File Browser directories exists? |
| 121 | 126 | echo '<p>'.$_lang['checking_if_images_exist']; |
| 122 | -switch(true){ |
|
| 127 | +switch(true) { |
|
| 123 | 128 | case !file_exists("../assets/images"): |
| 124 | 129 | case !file_exists("../assets/files"): |
| 125 | 130 | case !file_exists("../assets/backup"): |
@@ -134,7 +139,7 @@ discard block |
||
| 134 | 139 | |
| 135 | 140 | // File Browser directories writable? |
| 136 | 141 | echo '<p>'.$_lang['checking_if_images_writable']; |
| 137 | -switch(true){ |
|
| 142 | +switch(true) { |
|
| 138 | 143 | case !is_writable("../assets/images"): |
| 139 | 144 | case !is_writable("../assets/files"): |
| 140 | 145 | case !is_writable("../assets/backup"): |
@@ -268,7 +273,7 @@ discard block |
||
| 268 | 273 | if ($conn) { |
| 269 | 274 | echo '<p>'. $_lang['checking_mysql_strict_mode']; |
| 270 | 275 | $mysqlmode = mysqli_query($conn, "SELECT @@global.sql_mode"); |
| 271 | - if (mysqli_num_rows($mysqlmode) > 0){ |
|
| 276 | + if (mysqli_num_rows($mysqlmode) > 0) { |
|
| 272 | 277 | $modes = mysqli_fetch_array($mysqlmode, MYSQLI_NUM); |
| 273 | 278 | //$modes = array("STRICT_TRANS_TABLES"); // for testing |
| 274 | 279 | // print_r($modes); |
@@ -305,9 +310,9 @@ discard block |
||
| 305 | 310 | echo '<p>'; |
| 306 | 311 | echo $_lang['setup_cannot_continue'] . ' '; |
| 307 | 312 | |
| 308 | - if($errors > 1){ |
|
| 313 | + if($errors > 1) { |
|
| 309 | 314 | echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
| 310 | - }else{ |
|
| 315 | + } else { |
|
| 311 | 316 | echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']; |
| 312 | 317 | } |
| 313 | 318 | |
@@ -343,23 +348,35 @@ discard block |
||
| 343 | 348 | <input type="hidden" value="<?php echo $_POST['installdata'] ?>" name="installdata" /> |
| 344 | 349 | <?php |
| 345 | 350 | $templates = isset ($_POST['template']) ? $_POST['template'] : array (); |
| 346 | - foreach ($templates as $i => $template) echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
|
| 351 | + foreach ($templates as $i => $template) { |
|
| 352 | + echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
|
| 353 | + } |
|
| 347 | 354 | |
| 348 | 355 | $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array (); |
| 349 | - foreach ($tvs as $i => $tv) echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
|
| 356 | + foreach ($tvs as $i => $tv) { |
|
| 357 | + echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
|
| 358 | + } |
|
| 350 | 359 | |
| 351 | 360 | $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array (); |
| 352 | - foreach ($chunks as $i => $chunk) echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
|
| 361 | + foreach ($chunks as $i => $chunk) { |
|
| 362 | + echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
|
| 363 | + } |
|
| 353 | 364 | |
| 354 | 365 | $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array (); |
| 355 | - foreach ($snippets as $i => $snippet) echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
|
| 366 | + foreach ($snippets as $i => $snippet) { |
|
| 367 | + echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
|
| 368 | + } |
|
| 356 | 369 | |
| 357 | 370 | $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array (); |
| 358 | - foreach ($plugins as $i => $plugin) echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
|
| 371 | + foreach ($plugins as $i => $plugin) { |
|
| 372 | + echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
|
| 373 | + } |
|
| 359 | 374 | |
| 360 | 375 | $modules = isset ($_POST['module']) ? $_POST['module'] : array (); |
| 361 | - foreach ($modules as $i => $module) echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
|
| 362 | -?> |
|
| 376 | + foreach ($modules as $i => $module) { |
|
| 377 | + echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
|
| 378 | + } |
|
| 379 | + ?> |
|
| 363 | 380 | </div> |
| 364 | 381 | |
| 365 | 382 | <h2><?php echo $_lang['agree_to_terms'];?></h2> |
@@ -89,7 +89,8 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $MAGPIE_ERROR = ""; |
| 91 | 91 | |
| 92 | -function fetch_rss ($url) { |
|
| 92 | +function fetch_rss ($url) |
|
| 93 | +{ |
|
| 93 | 94 | // initialize constants |
| 94 | 95 | init(); |
| 95 | 96 | |
@@ -104,8 +105,7 @@ discard block |
||
| 104 | 105 | $resp = _fetch_remote_file( $url ); |
| 105 | 106 | if ( is_success( $resp->status ) ) { |
| 106 | 107 | return _response_to_rss( $resp ); |
| 107 | - } |
|
| 108 | - else { |
|
| 108 | + } else { |
|
| 109 | 109 | error("Failed to fetch $url and cache is off"); |
| 110 | 110 | return false; |
| 111 | 111 | } |
@@ -174,8 +174,7 @@ discard block |
||
| 174 | 174 | // reset cache on 304 (at minutillo insistent prodding) |
| 175 | 175 | $cache->set($cache_key, $rss); |
| 176 | 176 | return $rss; |
| 177 | - } |
|
| 178 | - elseif ( is_success( $resp->status ) ) { |
|
| 177 | + } elseif ( is_success( $resp->status ) ) { |
|
| 179 | 178 | $rss = _response_to_rss( $resp ); |
| 180 | 179 | if ( $rss ) { |
| 181 | 180 | if (MAGPIE_DEBUG > 1) { |
@@ -185,24 +184,20 @@ discard block |
||
| 185 | 184 | $cache->set( $cache_key, $rss ); |
| 186 | 185 | return $rss; |
| 187 | 186 | } |
| 188 | - } |
|
| 189 | - else { |
|
| 187 | + } else { |
|
| 190 | 188 | $errormsg = "Failed to fetch $url "; |
| 191 | 189 | if ( $resp->status == '-100' ) { |
| 192 | 190 | $errormsg .= "(Request timed out after " . MAGPIE_FETCH_TIME_OUT . " seconds)"; |
| 193 | - } |
|
| 194 | - elseif ( $resp->error ) { |
|
| 191 | + } elseif ( $resp->error ) { |
|
| 195 | 192 | # compensate for Snoopy's annoying habbit to tacking |
| 196 | 193 | # on '\n' |
| 197 | 194 | $http_error = substr($resp->error, 0, -2); |
| 198 | 195 | $errormsg .= "(HTTP Error: $http_error)"; |
| 199 | - } |
|
| 200 | - else { |
|
| 196 | + } else { |
|
| 201 | 197 | $errormsg .= "(HTTP Response: " . $resp->response_code .')'; |
| 202 | 198 | } |
| 203 | 199 | } |
| 204 | - } |
|
| 205 | - else { |
|
| 200 | + } else { |
|
| 206 | 201 | $errormsg = "Unable to retrieve RSS file for unknown reasons."; |
| 207 | 202 | } |
| 208 | 203 | |
@@ -229,7 +224,8 @@ discard block |
||
| 229 | 224 | Purpose: set MAGPIE_ERROR, and trigger error |
| 230 | 225 | \*=======================================================================*/ |
| 231 | 226 | |
| 232 | -function error ($errormsg, $lvl=E_USER_WARNING) { |
|
| 227 | +function error ($errormsg, $lvl=E_USER_WARNING) |
|
| 228 | +{ |
|
| 233 | 229 | global $MAGPIE_ERROR; |
| 234 | 230 | |
| 235 | 231 | // append PHP's error message if track_errors enabled |
@@ -243,7 +239,8 @@ discard block |
||
| 243 | 239 | } |
| 244 | 240 | } |
| 245 | 241 | |
| 246 | -function debug ($debugmsg, $lvl=E_USER_NOTICE) { |
|
| 242 | +function debug ($debugmsg, $lvl=E_USER_NOTICE) |
|
| 243 | +{ |
|
| 247 | 244 | trigger_error("MagpieRSS [debug] $debugmsg", $lvl); |
| 248 | 245 | } |
| 249 | 246 | |
@@ -251,7 +248,8 @@ discard block |
||
| 251 | 248 | Function: magpie_error |
| 252 | 249 | Purpose: accessor for the magpie error variable |
| 253 | 250 | \*=======================================================================*/ |
| 254 | -function magpie_error ($errormsg="") { |
|
| 251 | +function magpie_error ($errormsg="") |
|
| 252 | +{ |
|
| 255 | 253 | global $MAGPIE_ERROR; |
| 256 | 254 | |
| 257 | 255 | if ( isset($errormsg) and $errormsg ) { |
@@ -268,7 +266,8 @@ discard block |
||
| 268 | 266 | headers to send along with the request (optional) |
| 269 | 267 | Output: an HTTP response object (see Snoopy.class.inc) |
| 270 | 268 | \*=======================================================================*/ |
| 271 | -function _fetch_remote_file ($url, $headers = "" ) { |
|
| 269 | +function _fetch_remote_file ($url, $headers = "" ) |
|
| 270 | +{ |
|
| 272 | 271 | // Snoopy is an HTTP client in PHP |
| 273 | 272 | $client = new Snoopy(); |
| 274 | 273 | $client->agent = MAGPIE_USER_AGENT; |
@@ -289,7 +288,8 @@ discard block |
||
| 289 | 288 | Input: an HTTP response object (see Snoopy) |
| 290 | 289 | Output: parsed RSS object (see rss_parse) |
| 291 | 290 | \*=======================================================================*/ |
| 292 | -function _response_to_rss ($resp) { |
|
| 291 | +function _response_to_rss ($resp) |
|
| 292 | +{ |
|
| 293 | 293 | $rss = new MagpieRSS( $resp->results, MAGPIE_OUTPUT_ENCODING, MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING ); |
| 294 | 294 | |
| 295 | 295 | // if RSS parsed successfully |
@@ -300,8 +300,7 @@ discard block |
||
| 300 | 300 | // 2003-03-02 - Nicola Asuni (www.tecnick.com) - fixed bug "Undefined offset: 1" |
| 301 | 301 | if (strpos($h, ": ")) { |
| 302 | 302 | list($field, $val) = explode(": ", $h, 2); |
| 303 | - } |
|
| 304 | - else { |
|
| 303 | + } else { |
|
| 305 | 304 | $field = $h; |
| 306 | 305 | $val = ""; |
| 307 | 306 | } |
@@ -334,11 +333,11 @@ discard block |
||
| 334 | 333 | Purpose: setup constants with default values |
| 335 | 334 | check for user overrides |
| 336 | 335 | \*=======================================================================*/ |
| 337 | -function init () { |
|
| 336 | +function init () |
|
| 337 | +{ |
|
| 338 | 338 | if ( defined('MAGPIE_INITALIZED') ) { |
| 339 | 339 | return; |
| 340 | - } |
|
| 341 | - else { |
|
| 340 | + } else { |
|
| 342 | 341 | define('MAGPIE_INITALIZED', true); |
| 343 | 342 | } |
| 344 | 343 | |
@@ -360,7 +359,9 @@ discard block |
||
| 360 | 359 | |
| 361 | 360 | if ( !defined('MAGPIE_OUTPUT_ENCODING') ) { |
| 362 | 361 | global $modx_manager_charset; |
| 363 | - if(empty($modx_manager_charset)) $modx_manager_charset = 'ISO-8859-1'; |
|
| 362 | + if(empty($modx_manager_charset)) { |
|
| 363 | + $modx_manager_charset = 'ISO-8859-1'; |
|
| 364 | + } |
|
| 364 | 365 | define('MAGPIE_OUTPUT_ENCODING', $modx_manager_charset); |
| 365 | 366 | } |
| 366 | 367 | |
@@ -381,8 +382,7 @@ discard block |
||
| 381 | 382 | |
| 382 | 383 | if ( MAGPIE_CACHE_ON ) { |
| 383 | 384 | $ua = $ua . ')'; |
| 384 | - } |
|
| 385 | - else { |
|
| 385 | + } else { |
|
| 386 | 386 | $ua = $ua . '; No cache)'; |
| 387 | 387 | } |
| 388 | 388 | |
@@ -417,7 +417,8 @@ discard block |
||
| 417 | 417 | Function: is_info |
| 418 | 418 | Purpose: return true if Informational status code |
| 419 | 419 | \*=======================================================================*/ |
| 420 | -function is_info ($sc) { |
|
| 420 | +function is_info ($sc) |
|
| 421 | +{ |
|
| 421 | 422 | return $sc >= 100 && $sc < 200; |
| 422 | 423 | } |
| 423 | 424 | |
@@ -425,7 +426,8 @@ discard block |
||
| 425 | 426 | Function: is_success |
| 426 | 427 | Purpose: return true if Successful status code |
| 427 | 428 | \*=======================================================================*/ |
| 428 | -function is_success ($sc) { |
|
| 429 | +function is_success ($sc) |
|
| 430 | +{ |
|
| 429 | 431 | return $sc >= 200 && $sc < 300; |
| 430 | 432 | } |
| 431 | 433 | |
@@ -433,7 +435,8 @@ discard block |
||
| 433 | 435 | Function: is_redirect |
| 434 | 436 | Purpose: return true if Redirection status code |
| 435 | 437 | \*=======================================================================*/ |
| 436 | -function is_redirect ($sc) { |
|
| 438 | +function is_redirect ($sc) |
|
| 439 | +{ |
|
| 437 | 440 | return $sc >= 300 && $sc < 400; |
| 438 | 441 | } |
| 439 | 442 | |
@@ -441,7 +444,8 @@ discard block |
||
| 441 | 444 | Function: is_error |
| 442 | 445 | Purpose: return true if Error status code |
| 443 | 446 | \*=======================================================================*/ |
| 444 | -function is_error ($sc) { |
|
| 447 | +function is_error ($sc) |
|
| 448 | +{ |
|
| 445 | 449 | return $sc >= 400 && $sc < 600; |
| 446 | 450 | } |
| 447 | 451 | |
@@ -449,7 +453,8 @@ discard block |
||
| 449 | 453 | Function: is_client_error |
| 450 | 454 | Purpose: return true if Error status code, and its a client error |
| 451 | 455 | \*=======================================================================*/ |
| 452 | -function is_client_error ($sc) { |
|
| 456 | +function is_client_error ($sc) |
|
| 457 | +{ |
|
| 453 | 458 | return $sc >= 400 && $sc < 500; |
| 454 | 459 | } |
| 455 | 460 | |
@@ -457,6 +462,7 @@ discard block |
||
| 457 | 462 | Function: is_client_error |
| 458 | 463 | Purpose: return true if Error status code, and its a server error |
| 459 | 464 | \*=======================================================================*/ |
| 460 | -function is_server_error ($sc) { |
|
| 465 | +function is_server_error ($sc) |
|
| 466 | +{ |
|
| 461 | 467 | return $sc >= 500 && $sc < 600; |
| 462 | 468 | } |
@@ -28,9 +28,12 @@ |
||
| 28 | 28 | die; |
| 29 | 29 | } |
| 30 | 30 | $mtime = @filemtime($file); |
| 31 | -if ($mtime) httpCache::checkMTime($mtime); |
|
| 31 | +if ($mtime) { |
|
| 32 | + httpCache::checkMTime($mtime); |
|
| 33 | +} |
|
| 32 | 34 | require $file; |
| 33 | 35 | header("Content-Type: text/javascript; charset={$lang['_charset']}"); |
| 34 | -foreach ($lang as $english => $native) |
|
| 36 | +foreach ($lang as $english => $native) { |
|
| 35 | 37 | if (substr($english, 0, 1) != "_") |
| 36 | 38 | echo "browser.labels['" . text::jsValue($english) . "']=\"" . text::jsValue($native) . "\";"; |
| 39 | +} |
|