Browse Source

Merge pull request #1497 from bencorlett/patch-2

Allow forward slash separators in Str::classify()
Taylor Otwell 12 years ago
parent
commit
8541ff50ab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/str.php

+ 1 - 1
laravel/str.php

@@ -296,7 +296,7 @@ class Str {
 	 */
 	public static function classify($value)
 	{
-		$search = array('_', '-', '.');
+		$search = array('_', '-', '.', '/');
 
 		return str_replace(' ', '_', static::title(str_replace($search, ' ', $value)));
 	}