Changeset 383 for beta/pages/aukce.php


Ignore:
Timestamp:
Sep 28, 2008, 11:22:53 AM (16 years ago)
Author:
george
Message:

Beta web

  • Přidáno: Uzavírání hráčů do vězení.
  • Přidáno: Vkládání aktualit pro GM.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • beta/pages/aukce.php

    r377 r383  
    1717if (isset($_POST["set"]))
    1818{
    19   $day_half = 129600;
    20   setcookie("hof-maxlvl",$_POST["maxlvl"],time()+$day_half);
    21   setcookie("hof-minlvl",$_POST["minlvl"],time()+$day_half);
    22   setcookie("hof-maxgold",$_POST["maxgold"],time()+$day_half);
    23   setcookie("hof-frakce",$_POST["frakce"],time()+$day_half);
     19  $year = 365 * 24 * 60 * 60;
     20  setcookie("hof-maxlvl",$_POST["maxlvl"],time()+$year);
     21  setcookie("hof-minlvl",$_POST["minlvl"],time()+$year);
     22  setcookie("hof-maxgold",$_POST["maxgold"],time()+$year);
     23  setcookie("hof-frakce",$_POST["frakce"],time()+$year);
    2424  echo "<meta http-equiv=\"refresh\" content=\"2;url=?page=aukce\">";
    2525  $work = "Ukládám nastavení , chvíli strpení";
     
    2727if (isset($_POST["reset"]))
    2828{
    29   setcookie("hof-maxlvl","");
    30   setcookie("hof-minlvl","");
    31   setcookie("hof-maxgold","");
    32   setcookie("hof-frakce","");
     29  $year = 365 * 24 * 60 * 60;
     30  setcookie("hof-maxlvl","",time()+$year);
     31  setcookie("hof-minlvl","",time()+$year);
     32  setcookie("hof-maxgold","",time()+$year);
     33  setcookie("hof-frakce","",time()+$year);
    3334  echo "<meta http-equiv=\"refresh\" content=\"2;url=?page=aukce\">";
    3435  $work = "Ukládám nastavení , chvíli strpení";
Note: See TracChangeset for help on using the changeset viewer.