Changeset 8028
- Timestamp:
- 05/31/08 10:51:50 (6 months ago)
- Files:
-
- trunk/wp-admin/press-this.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/press-this.php
r8017 r8028 99 99 100 100 $sources = array(); 101 102 101 foreach ($matches[1] as $src) { 103 102 if ( false !== strpos($src, '&') ) 104 103 continue; 105 $src = 'http://'.str_replace('//','/', $host['host'].'/'.$host['path'].'/'.$src); 104 if ( !strstr( $src, 'http://' ) ) 105 $src = 'http://'.str_replace('//','/', $host['host'].'/'.$host['path'].'/'.$src); 106 106 107 107 $sources[] = $src;
