From: Arno H. <aho...@us...> - 2001-01-04 18:32:42
|
Update of /cvsroot/phpwiki/phpwiki/lib In directory usw-pr-cvs1:/tmp/cvs-serv8399 Modified Files: config.php Log Message: ZERO/SINGLE_DEPTH renamed into ZERO/NESTED_LEVEL Index: config.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/config.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** config.php 2000/12/30 21:09:13 1.18 --- config.php 2001/01/04 18:32:43 1.19 *************** *** 217,224 **** } ! // 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 for flags in $pagehash --- 217,224 ---- } ! // 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 |