this should fix it :D!

This commit is contained in:
Quitta 2013-09-17 04:24:57 +02:00
parent 4da16dbaad
commit 7b1c32176d
2 changed files with 7 additions and 1 deletions

View file

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

View file

@ -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"] ) ){