Browse Source

Use DS constant.

Taylor Otwell 12 years ago
parent
commit
6c3c297c5c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/error.php

+ 1 - 1
laravel/error.php

@@ -20,7 +20,7 @@ class Error {
 		// For Laravel view errors we want to show a prettier error:
 		$file = $exception->getFile();
 
-		if (str_contains($exception->getFile(), 'eval()') and str_contains($exception->getFile(), 'laravel/view.php'))
+		if (str_contains($exception->getFile(), 'eval()') and str_contains($exception->getFile(), 'laravel'.DS.'view.php'))
 		{
 			$message = 'Error rendering view: ['.View::$last['name'].']'.PHP_EOL.PHP_EOL.$message;