From: Carsten K. <car...@us...> - 2001-12-07 05:27:06
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv14067/phpwiki Modified Files: index.php Log Message: InterWiki link-icon added. Index: index.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/index.php,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -r1.36 -r1.37 *** index.php 2001/12/06 22:11:23 1.36 --- index.php 2001/12/07 05:27:03 1.37 *************** *** 267,271 **** // this turns on url indicator icons, inserted before embedded links ! // FIXME: need a special icon (question mark?) for unknown protocols. /* $URL_LINK_ICONS = array( --- 267,273 ---- // this turns on url indicator icons, inserted before embedded links ! // '*' icon is shown when the link type has no icon listed here, ! // but ONLY for the AllowedProtocols specified in in part four! ! // 'interwiki' icon indicates a Wiki listed in lib/interwiki.map /* $URL_LINK_ICONS = array( *************** *** 274,277 **** --- 276,280 ---- 'ftp' => 'images/ftp.png', 'mailto' => 'images/mailto.png', + 'interwiki' => 'images/interwiki.png', '*' => 'images/zapg.png' ); |