Remove explanation on how to access superglobals via templates
authorTim Düsterhus <duesterhus@woltlab.com>
Fri, 21 Oct 2022 12:52:35 +0000 (14:52 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Fri, 21 Oct 2022 12:52:35 +0000 (14:52 +0200)
One really really shouldn't do this.

docs/view/templates.md

index dc244e66c7cb0e919f210a1b6f8bd2ab6016cae3..189fa47c9eda192f6fa13d84b88e1af8549421d4 100644 (file)
@@ -197,17 +197,6 @@ If you want to call a function on a variable, you can use the modifier syntax:
 
 #### System Template Variable
 
-The template variable `$tpl` is automatically assigned and is an array containing different data:
-
-- `$tpl[get]` contains `$_GET`.
-- `$tpl[post]` contains `$_POST`.
-- `$tpl[cookie]` contains `$_COOKIE`.
-- `$tpl[server]` contains `$_SERVER`.
-- `$tpl[env]` contains `$_ENV`.
-- `$tpl[now]` contains `TIME_NOW` (current timestamp).
-
-Furthermore, the following template variables are also automatically assigned:
-
 - `$__wcf` contains the `WCF` object (or `WCFACP` object in the backend).
 
 ### Comments