Update of /cvsroot/phpwiki/phpwiki
In directory usw-pr-cvs1:/tmp/cvs-serv16346
Modified Files:
index.php
Log Message:
New: configurable "..." separators for RecentChanges and RecentEdits lists. (Inspired by Usemod's RC).
Index: index.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/index.php,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -r1.53 -r1.54
*** index.php 2002/01/05 11:46:03 1.53
--- index.php 2002/01/05 18:33:52 1.54
***************
*** 361,364 ****
--- 361,369 ----
define("NUM_RELATED_PAGES", 5);
+ // This defines separators used in RecentChanges and RecentEdits lists.
+ // If undefined, defaults to '' (nothing) and '...' (three periods).
+ //define("RC_SEPARATOR_A", '. . . ');
+ //define("RC_SEPARATOR_B", '. . . . . ');
+
// Template files (filenames are relative to script position)
// However, if a LANG is set, they we be searched for in a locale
|