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