debugswitch renamed.
[mirrors/Kyberia-bloodline.git] / wwwroot / -debugswitch.php
... / ...
CommitLineData
1<?php
2session_start();
3if ($_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.075438 seconds and 4 git commands to generate.