From cfd9991c264e96775589f1d08a61312b0ed48eb2 Mon Sep 17 00:00:00 2001 From: messju Date: Mon, 12 Jan 2004 19:46:12 +0000 Subject: [PATCH] removed docs for $global_assign --- docs/programmers.sgml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/docs/programmers.sgml b/docs/programmers.sgml index f4d06002..de90be90 100644 --- a/docs/programmers.sgml +++ b/docs/programmers.sgml @@ -130,29 +130,6 @@ require_once(SMARTY_DIR."Smarty.class.php"); value is ignored. - - $global_assign - - This is a list of variables that are always implicitly assigned - to the template engine. This is handy for making global - variables or server variables available to all templates - without having to manually assign them. Each element in the - $global_assign should be either a name of the global variable, - or a key/value pair, where the key is the name of the global - array and the value is the array of variables to be assigned - from that global array. $SCRIPT_NAME is globally assigned by - default from $HTTP_SERVER_VARS. - - - Technical Note - - Server variables can be accessed through the - $smarty variable, such as {$smarty.server.SCRIPT_NAME}. See the - section on the - $smarty variable. - - - $undefined