Browse Source

Allow forward slash separators in Str::classify()

Ben Corlett 12 years ago
parent
commit
438caf2631
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)));
 	}