Erlaube absolute Links
bernd

bernd commited on 2009-04-30 19:35:18
Zeige 1 geänderte Dateien mit 5 Einfügungen und 0 Löschungen.


git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@1356 87cf0b9e-d624-0410-a070-f6ee81989793
... ...
@@ -176,6 +176,11 @@ function encode_querystring($querystring)
176 176
 
177 177
 function internal_link($file, $label, $querystring = '', $attribs = '')
178 178
 {
179
+  global $prefix;
180
+  if (strpos($file, '/') == 0)
181
+  {
182
+    $file = $prefix.substr($file, 1);
183
+  }
179 184
   $querystring = encode_querystring($querystring);
180 185
   return "<a href=\"{$file}{$querystring}\" {$attribs} >{$label}</a>";
181 186
 }
182 187