Browse Source

refactoring lang and url classes.

Taylor Otwell 13 years ago
parent
commit
49b13e6960
2 changed files with 9 additions and 9 deletions
  1. 8 8
      laravel/lang.php
  2. 1 1
      laravel/url.php

+ 8 - 8
laravel/lang.php

@@ -11,6 +11,13 @@ class Lang {
 	 */
 	protected static $lines = array();
 
+	/**
+	 * The paths containing the language files.
+	 *
+	 * @var array
+	 */
+	protected static $paths = array(LANG_PATH);
+
 	/**
 	 * The key of the language line being retrieved.
 	 *
@@ -32,13 +39,6 @@ class Lang {
 	 */
 	protected $language;
 
-	/**
-	 * The paths containing the language files.
-	 *
-	 * @var array
-	 */
-	protected $paths = array(LANG_PATH);
-
 	/**
 	 * Create a new Lang instance.
 	 *
@@ -164,7 +164,7 @@ class Lang {
 
 		$language = array();
 
-		foreach ($this->paths as $directory)
+		foreach (static::$paths as $directory)
 		{
 			if (file_exists($path = $directory.$this->language.'/'.$file.EXT))
 			{

+ 1 - 1
laravel/url.php

@@ -59,7 +59,7 @@ class URL {
 	{
 		if (is_null($https)) $https = Request::secure();
 
-		return str_replace('index.php/', '', static::to($url, $https));
+		return str_replace(Config::$items['application']['index'].'/', '', static::to($url, $https));
 	}
 
 	/**