Revision: 8693
http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8693&view=rev
Author: vargenau
Date: 2012-12-27 18:04:37 +0000 (Thu, 27 Dec 2012)
Log Message:
-----------
Indent code
Modified Paths:
--------------
trunk/lib/plugin/LinkDatabase.php
Modified: trunk/lib/plugin/LinkDatabase.php
===================================================================
--- trunk/lib/plugin/LinkDatabase.php 2012-12-27 17:56:07 UTC (rev 8692)
+++ trunk/lib/plugin/LinkDatabase.php 2012-12-27 18:04:37 UTC (rev 8693)
@@ -155,7 +155,11 @@
echo "<!DOCTYPE GraphXML SYSTEM \"$dtd\">\n";
echo "<GraphXML xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n";
echo "<graph id=\"", MangleXmlIdentifier(WIKI_NAME), "\">\n";
- echo '<style><line tag="node" class="main" colour="#ffffff"/><line tag="node" class="child" colour="blue"/><line tag="node" class="relation" colour="green"/></style>', "\n\n";
+ echo '<style>';
+ echo '<line tag="node" class="main" colour="#ffffff"/>';
+ echo '<line tag="node" class="child" colour="blue"/>';
+ echo '<line tag="node" class="relation" colour="green"/>';
+ echo "</style>\n\n";
while ($page = $pages->next()) {
$pageid = MangleXmlIdentifier($page->getName());
$pagename = $page->getName();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|