this should fix it :D!

--HG--
branch : quitta-gsoc-2013
hg/feature/sse2
Quitta 12 years ago
parent 2747ed75f7
commit 343c01d077

@ -82,7 +82,6 @@
</tr>
</table>
<input type="hidden" name="function" value="add_user">
<div class="c1">
<input type="submit"
name="Submit"

@ -33,6 +33,13 @@ if ( ! isset( $_GET["page"]) ){
$page = $_GET["page"];
}
//check if ingame & page= register
//this is needed because the ingame register can't send a hidden $_POST["function"]
if ( Helpers::check_if_game_client() && $page.equals("register")){
require( "func/add_user.php" );
$return = add_user();
}
//perform an action in case one is specified
//else check if a php page is included in the inc folder, else just set page to the get param
if ( isset( $_POST["function"] ) ){

Loading…
Cancel
Save