merged new map

This commit is contained in:
following
2013-03-04 02:34:05 +01:00
171 changed files with 2510 additions and 1351 deletions

View File

@ -316,4 +316,19 @@ function fix_magic_quotes_gpc()
}
}
}
// prelminary wiki help embedding; needs translation table
//
// pay attention to use only ' quotes in $text (escape other ')
function helppagelink($pagename)
{
global $opt;
if (isset($opt['locale'][$opt['template']['locale']]['helpwiki']))
return "<a class='nooutline' href='" . $opt['locale'][$opt['template']['locale']]['helpwiki'] .
str_replace(' ','_',$pagename) . "' target='_blank'>";
else
return $text;
}
?>