1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00
This commit is contained in:
mcfly
2008-12-02 14:25:59 +00:00
parent ae846b57e5
commit f5de93cf98

View File

@@ -0,0 +1,13 @@
<?php
function url_user_main($parms)
{
switch($parms['func'])
{
case 'profile':
return e_HTTP.'user.php?id.'.$parms['id'];
break;
}
}
?>