1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +02:00

Fixed usersetting.php url when editing a user from admin.

This commit is contained in:
CaMer0n
2009-08-05 14:16:57 +00:00
parent 17dc2b77c6
commit 50d1693199

View File

@@ -1,7 +1,7 @@
<?php <?php
/* /*
* Copyright e107 Inc e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt) * Copyright e107 Inc e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt)
* $Id: main.php,v 1.3 2008-12-22 03:15:04 mcfly_e107 Exp $ * $Id: main.php,v 1.4 2009-08-05 14:16:57 e107coders Exp $
* *
* eURL configuration script * eURL configuration script
*/ */
@@ -15,7 +15,7 @@ function url_user_main($parms)
break; break;
case 'settings': case 'settings':
return e_HTTP.'usersettings.php?id.'.$parms['id']; return e_HTTP.'usersettings.php?'.$parms['id'];
break; break;
} }