Update of /cvsroot/phpwiki/phpwiki
In directory usw-pr-cvs1:/tmp/cvs-serv1193/phpwiki
Modified Files:
index.php
Log Message:
patch #496654, added nntp to list of allowed protocols.
(also added tiff and tiff to list of image types to be inlined.)
Index: index.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/index.php,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -r1.43 -r1.44
*** index.php 2001/12/26 14:00:37 1.43
--- index.php 2001/12/27 01:34:38 1.44
***************
*** 360,367 ****
// URL of these types will be automatically linked.
// within a named link [name|uri] one more protocol is defined: phpwiki
! $AllowedProtocols = "http|https|mailto|ftp|news|gopher";
// URLs ending with the following extension should be inlined as images
! $InlineImages = "png|jpg|gif";
// Uncomment this to automatically split WikiWords by inserting spaces.
--- 360,367 ----
// URL of these types will be automatically linked.
// within a named link [name|uri] one more protocol is defined: phpwiki
! $AllowedProtocols = "http|https|mailto|ftp|news|nntp|gopher";
// URLs ending with the following extension should be inlined as images
! $InlineImages = "png|jpg|gif|tiff|tif";
// Uncomment this to automatically split WikiWords by inserting spaces.
|