From 97536c12cd0c4a6d43667bc2d58b0213e9a2c69c Mon Sep 17 00:00:00 2001 From: ahollosi Date: Thu, 4 Jan 2001 18:32:43 +0000 Subject: [PATCH] ZERO/SINGLE_DEPTH renamed into ZERO/NESTED_LEVEL git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@363 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- lib/config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/config.php b/lib/config.php index e7dc41a99..280851dac 100644 --- a/lib/config.php +++ b/lib/config.php @@ -6,7 +6,7 @@ if (!function_exists('rcs_id')) { function rcs_id($id) { echo "\n"; }; } - rcs_id('$Id: config.php,v 1.18 2000-12-30 21:09:13 ahollosi Exp $'); + rcs_id('$Id: config.php,v 1.19 2001-01-04 18:32:43 ahollosi Exp $'); // end essential internal stuff @@ -216,10 +216,10 @@ : ($remoteuser = getenv('REMOTE_ADDR')); } - // constants used for HTML output. List tags like UL and - // OL have a depth of one, PRE has a depth of 0. - define("ZERO_DEPTH", 0); - define("SINGLE_DEPTH", 1); + // constants used for HTML output. HTML tags may allow nesting + // other tags always start at level 0 + define("ZERO_LEVEL", 0); + define("NESTED_LEVEL", 1); // constants for flags in $pagehash define("FLAG_PAGE_LOCKED", 1); -- 2.45.2