From: Carsten K. <car...@us...> - 2001-12-27 01:36:38
|
Update of /cvsroot/phpwiki/phpwiki/lib In directory usw-pr-cvs1:/tmp/cvs-serv1413/phpwiki/lib Modified Files: Tag: release-1_2-branch config.php Log Message: patch #496654, added nntp to list of allowed protocols. (also added tiff to list of image types to be inlined.) Index: config.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/config.php,v retrieving revision 1.24.2.11 retrieving revision 1.24.2.12 diff -C2 -r1.24.2.11 -r1.24.2.12 *** config.php 2001/12/11 15:47:02 1.24.2.11 --- config.php 2001/12/27 01:36:35 1.24.2.12 *************** *** 196,203 **** // allowed protocols for links - be careful not to allow "javascript:" // 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. --- 196,203 ---- // allowed protocols for links - be careful not to allow "javascript:" // 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. |