|
From: <sv...@va...> - 2005-10-16 16:38:40
|
Author: njn Date: 2005-10-16 17:38:33 +0100 (Sun, 16 Oct 2005) New Revision: 219 Log: Fix parse error Modified: trunk/php/menu.php Modified: trunk/php/menu.php =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/php/menu.php 2005-10-16 16:37:24 UTC (rev 218) +++ trunk/php/menu.php 2005-10-16 16:38:33 UTC (rev 219) @@ -5,15 +5,15 @@ array( 'url'=3D>'news.html', 'tag'=3D>'News' ), array( 'url'=3D>'tools.html', 'tag'=3D>'Tool Suite' ), array( 'url'=3D>'platforms.html', 'tag'=3D>'Supported Platforms' ), - array( 'url'=3D>'developers.html','tag'=3D>'The Developers' ), + array( 'url'=3D>'developers.html','tag'=3D>'The Developers' ) ); =20 $source_code =3D array( array( 'url'=3D>'current.html', 'tag'=3D>'Current Releases' ), - array( 'url'=3D>'old.html', 'tag'=3D>'Old Releases' ) + array( 'url'=3D>'old.html', 'tag'=3D>'Old Releases' ), array( 'url'=3D>'guis.html', 'tag'=3D>'Front Ends / GUIs' ), array( 'url'=3D>'variants.html', 'tag'=3D>'Variants / Patches' ), - array( 'url'=3D>'repository.html','tag'=3D>'Code Repository' ), + array( 'url'=3D>'repository.html','tag'=3D>'Code Repository' ) ); =20 $docs =3D array( @@ -36,7 +36,7 @@ ); =20 $help =3D array( - array( 'url'=3D>'contributing.html', 'tag'=3D>'Contributing' ) + array( 'url'=3D>'contributing.html', 'tag'=3D>'Contributing' ), array( 'url'=3D>'projects.html', 'tag'=3D>'Project Suggestions' ) ); =20 |