Ticket #1372: wp-secure-schema.2.patch
| File wp-secure-schema.2.patch, 4.4 KB (added by , 21 years ago) |
|---|
-
wp-login.php
12 12 if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) ) 13 13 $_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] ); 14 14 15 if ( dirname('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) != get_settings('siteurl') ) 16 update_option('siteurl', dirname('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) ); 15 $schema = (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS'])=='on')?'https://':'http://'; 16 if ( dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) != get_settings('siteurl') ) 17 update_option('siteurl', dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) ); 17 18 } 18 19 19 20 switch($action) { -
wp-includes/functions.php
685 685 $link_url = $matches[2][$i]; 686 686 $link_text = $matches[4][$i]; 687 687 $content = str_replace($link_match, $link_text.' '.$link_number, $content); 688 $link_url = ( strtolower(substr($link_url,0,7)) != 'http://') ? get_settings('home') . $link_url : $link_url;688 $link_url = ((strtolower(substr($link_url,0,7)) != 'http://')||(strtolower(substr($link_url,0,7)) != 'https://')) ? get_settings('home') . $link_url : $link_url; 689 689 $links_summary .= "\n".$link_number.' '.$link_url; 690 690 } 691 691 $content = strip_tags($content); -
xmlrpc.php
283 283 284 284 /* warning: here we make the assumption that the weblog's URI is on the same server */ 285 285 $filename = get_settings('home') . '/'; 286 $filename = preg_replace('#http ://.+?/#', $_SERVER['DOCUMENT_ROOT'].'/', $filename);286 $filename = preg_replace('#https?://.+?/#', $_SERVER['DOCUMENT_ROOT'].'/', $filename); 287 287 288 288 $f = fopen($filename, 'r'); 289 289 $content = fread($f, filesize($filename)); … … 317 317 318 318 /* warning: here we make the assumption that the weblog's URI is on the same server */ 319 319 $filename = get_settings('home') . '/'; 320 $filename = preg_replace('#http ://.+?/#', $_SERVER['DOCUMENT_ROOT'].'/', $filename);320 $filename = preg_replace('#https?://.+?/#', $_SERVER['DOCUMENT_ROOT'].'/', $filename); 321 321 322 322 if ($f = fopen($filename, 'w+')) { 323 323 fwrite($f, $content); … … 1086 1086 $error_code = -1; 1087 1087 1088 1088 // Check if the page linked to is in our site 1089 $pos1 = strpos($pagelinkedto, str_replace( 'http://', '', str_replace('www.', '', get_settings('home'))));1089 $pos1 = strpos($pagelinkedto, str_replace(array('http://www.','http://','https://www.','https://'), '', get_settings('home'))); 1090 1090 if( !$pos1 ) 1091 1091 return new IXR_Error(0, 'Is there no link to us?'); 1092 1092 -
wp-admin/install.php
6 6 require_once('../wp-config.php'); 7 7 require_once('./upgrade-functions.php'); 8 8 9 $guessurl = str_replace('/wp-admin/install.php?step=2', '', 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) ); 9 $schema = (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS'])=='on')?'https://':'http://'; 10 $guessurl = str_replace('/wp-admin/install.php?step=2', '', $schema . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) ); 10 11 11 12 if (isset($_GET['step'])) 12 13 $step = $_GET['step']; -
wp-admin/upgrade-schema.php
149 149 function populate_options() { 150 150 global $wpdb; 151 151 152 $guessurl = preg_replace('|/wp-admin/.*|i', '', 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); 152 $schema = (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS'])=='on')?'https://':'http://'; 153 $guessurl = preg_replace('|/wp-admin/.*|i', '', $schema . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); 153 154 add_option('siteurl', $guessurl, __('WordPress web address')); 154 155 add_option('blogname', __('My Weblog'), __('Blog title')); 155 156 add_option('blogdescription', __('Just another WordPress weblog'), __('Short tagline'));