very simple debugging switch
[mirrors/Kyberia-bloodline.git] / wwwroot / debugswitch.php
1 <?php
2 if ($_SESSION['debugging']) {
3 $_SESSION['debugging']=false;
4 echo "debugging turned off; refresh to turn it on";
5 } else {
6 $_SESSION['debugging']=true;
7 echo "debugging turned on; refresh to turn it off";
8 }
9 ?>
This page took 0.274094 seconds and 5 git commands to generate.