very simple debugging switch
[mirrors/Kyberia-bloodline.git] / wwwroot / debugswitch.php
CommitLineData
e7749a76
DH
1<?php
2if ($_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.130516 seconds and 4 git commands to generate.