diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-15 22:05:38 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-15 22:05:38 +0000 |
commit | b4f8d824f7a6b3466e95dd510af41fabc08df848 (patch) | |
tree | 9b3f8698073b58006a0118e8224e2aae8d2a69e2 | |
parent | bf4cd1b813c8b7abe66c32ac8384f2a4799ed2f4 (diff) |
Remove profiling and debugging from the scaffold info screen.
-rw-r--r-- | core/views/scaffold.html.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/core/views/scaffold.html.php b/core/views/scaffold.html.php index cd625467..028acd02 100644 --- a/core/views/scaffold.html.php +++ b/core/views/scaffold.html.php @@ -426,20 +426,6 @@ <i>(<?= $most_tagged->count ?> tags)</i> </li> <? endif ?> - <li> Profiling: - <? if (Session::instance()->get("profiler", false)): ?> - <b>on</b> <?= html::anchor("scaffold/session/profiler?value=0", "off") ?> - <? else: ?> - <?= html::anchor("scaffold/session/profiler?value=1", "on") ?> <b>off</b> - <? endif ?> - </li> - <li> Debug: - <? if (Session::instance()->get("debug", false)): ?> - <b>on</b> <?= html::anchor("scaffold/session/debug?value=0", "off") ?> - <? else: ?> - <?= html::anchor("scaffold/session/debug?value=1", "on") ?> <b>off</b> - <? endif ?> - </li> </ul> </div> |