diff --git a/src/Illuminate/View/Compilers/Compiler.php b/src/Illuminate/View/Compilers/Compiler.php index 2a943e0f6309..067b1eb87d84 100755 --- a/src/Illuminate/View/Compilers/Compiler.php +++ b/src/Illuminate/View/Compilers/Compiler.php @@ -68,7 +68,7 @@ public function isExpired($path) return true; } - return $this->files->lastModified($path) >= + return $this->files->lastModified($path) > $this->files->lastModified($compiled); }