Revision: 96
http://astrospaces.svn.sourceforge.net/astrospaces/?rev=96&view=rev
Author: caleb870
Date: 2007-08-06 21:47:05 -0700 (Mon, 06 Aug 2007)
Log Message:
-----------
Fixed the semi-colon error and remodeled it to fit the exact format the template system loads language files.
Modified Paths:
--------------
trunk/lang/en/lang_main.php
Modified: trunk/lang/en/lang_main.php
===================================================================
--- trunk/lang/en/lang_main.php 2007-08-06 05:15:04 UTC (rev 95)
+++ trunk/lang/en/lang_main.php 2007-08-07 04:47:05 UTC (rev 96)
@@ -18,9 +18,8 @@
@id: $Id$
*********************************************************/
-$lang = array();
-$main=array(
- 'BLOG_AUTHOR' => 'Author',
+$main = array(
+ 'BLOG_AUTHOR' => 'Author',
'BLOG_TIME' => 'Posted at',
'BLOG_COMMENT' => 'This post has 1 comment',
'BLOG_COMMENTS' => 'This post has %s comments',
@@ -35,6 +34,6 @@
'GALLERY_LEAVE_COMMEMNT' => 'Click %s to leave a comment on this image',
'GLOBAL_HERE' => 'here',
'ERROR_MUST_BE_LOGGEDIN' => 'You must be logged in to access this page'
-)
-$lang=array_merge($lang, $main);
+);
+return $main;
?>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|