summaryrefslogtreecommitdiff
path: root/core/views
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-11-25 02:17:53 +0000
committerBharat Mediratta <bharat@menalto.com>2008-11-25 02:17:53 +0000
commitdcf3693b3ebcb75436da7df5d2171891357703aa (patch)
tree9d67c2613072f974d3a6b6c39b82647b9a84773b /core/views
parent85bdb606bf56a71b4b02fa353129b6c2cfe2b527 (diff)
Add theme debugging. Activate it in the [info] tab in the
scaffolding, then browse around your Gallery3 to see where you can add visible elements via modules.
Diffstat (limited to 'core/views')
-rw-r--r--core/views/welcome.html.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/core/views/welcome.html.php b/core/views/welcome.html.php
index c9277efd..7b34927f 100644
--- a/core/views/welcome.html.php
+++ b/core/views/welcome.html.php
@@ -239,9 +239,16 @@
<? endif ?>
<li> Profiling:
<? if (Session::instance()->get("use_profiler", false)): ?>
- <b>on</b> <?= html::anchor("welcome/profiler?use_profiler=0", "off") ?>
+ <b>on</b> <?= html::anchor("welcome/session/profiler?value=0", "off") ?>
<? else: ?>
- <?= html::anchor("welcome/profiler?use_profiler=1", "on") ?> <b>off</b>
+ <?= html::anchor("welcome/session/profiler?value=1", "on") ?> <b>off</b>
+ <? endif ?>
+ </li>
+ <li> Debug:
+ <? if (Session::instance()->get("debug", false)): ?>
+ <b>on</b> <?= html::anchor("welcome/session/debug?value=0", "off") ?>
+ <? else: ?>
+ <?= html::anchor("welcome/session/debug?value=1", "on") ?> <b>off</b>
<? endif ?>
</li>
</ul>