Update of /cvsroot/phpwiki/phpwiki/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4514/lib Modified Files: CachedMarkup.php Log Message: decide later with which class to render this link (fixes interwiki link layout) Index: CachedMarkup.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/CachedMarkup.php,v retrieving revision 1.44 retrieving revision 1.45 diff -u -2 -b -p -d -r1.44 -r1.45 --- CachedMarkup.php 8 Oct 2006 12:38:11 -0000 1.44 +++ CachedMarkup.php 12 Oct 2006 06:33:50 -0000 1.45 @@ -2,5 +2,5 @@ rcs_id('$Id$'); /* Copyright (C) 2002 Geoffrey T. Dairiki <da...@da...> - * Copyright (C) 2004,2005,2006 $ThePhpWikiProgrammingTeam + * Copyright (C) 2004, 2005 $ThePhpWikiProgrammingTeam * * This file is part of PhpWiki. @@ -547,4 +547,9 @@ class Cached_InterwikiLink extends Cache } + /* there may be internal interwiki links also */ + function _getType() { + return $this->getPagename(false) ? 'internal' : 'external'; + } + function _getURL($basepage) { $link = $this->expand($basepage, $this); @@ -644,4 +649,10 @@ class Cached_PluginInvocation extends Ca } +// $Log$ +// Revision 1.45 2006年10月12日 06:33:50 rurban +// decide later with which class to render this link (fixes interwiki link layout) +// + + // (c-file-style: "gnu") // Local Variables: