浏览代码

absolute, untouched domain links now possible, if a '!' is inserted as first character.
[FOO](!/bar)

Florian Trudel 10 年之前
父节点
当前提交
71a9bb6fb5
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      system/core/core.php

+ 2 - 0
system/core/core.php

@@ -2040,6 +2040,8 @@ class YellowLookup
 				if(preg_match("/^\#/", $location))
 				{
 					$location = $pageBase.$pageLocation.$location;
+				} else if( preg_match( "/^\!/", $location )) {
+					$location = substr( $location, 1 );
 				} else if(!preg_match("/^\//", $location)) {
 					$location = $this->getDirectoryLocation($pageBase.$pageLocation).$location;
 				} else if(!preg_match("#^$pageBase#", $location)) {