25c1a81a by Chris Boden

Added _make_link_relative fn

1 parent 5efbe65d
...@@ -149,4 +149,9 @@ function _update_user() { ...@@ -149,4 +149,9 @@ function _update_user() {
149 $params = func_get_args(); 149 $params = func_get_args();
150 return call_user_func_array('wp' . __FUNCTION__, $params); 150 return call_user_func_array('wp' . __FUNCTION__, $params);
151 } 151 }
152
153 function _make_link_relative() {
154 $params = func_get_args();
155 return call_user_func_array('wp' . __FUNCTION__, $params);
156 }
152 ?> 157 ?>
......