- 03 Apr, 2013 1 commit
-
-
Robert K authored
Most SLL-related code in Laravel checks to see if `application.ssl` is true before doing an action requiring it. `Cookie::put()` is the only exception that I've found, to date, that doesn't test for SSL. This checks to see that the SSL is enabled when attempting to set a secure cookie. To verify, set `application.ssl` to false (without this patch) then run: Cookie::put('foo', 'bar', 0, '/', null, true); You will get an exception because of line 90 in `cookie.php`: if ($secure and ! Request::secure()) { throw new \Exception("Attempting to set secure cookie over HTTP."); } With this patch you will not get this error unless both `application.ssl` is true, and the cookie `$secure` flag is set.
-
- 02 Apr, 2013 2 commits
-
-
Taylor Otwell authored
Add unregister IoC
-
Steven Klar authored
Signed-off-by: Steven Klar <steven.klar@mayflower.de>
-
- 29 Mar, 2013 4 commits
-
-
Taylor Otwell authored
Exit with non-zero if command fails, useful in scripting and CI
-
Pavel Puchkin authored
-
Taylor Otwell authored
Ability to flush file-based cache storage
-
Pavel Puchkin authored
-
- 28 Mar, 2013 24 commits
-
-
Taylor Otwell authored
-
Taylor Otwell authored
-
Taylor Otwell authored
URI data available in the before filter.
-
Taylor Otwell authored
Add Command alias to application configuration
-
Taylor Otwell authored
Add calling class and function information in logs
-
Taylor Otwell authored
Romanian language
-
Taylor Otwell authored
Fix bug in ANBU that cause wrong total time showing on SQL tab
-
Taylor Otwell authored
Make HTML escaping optional for label contents.
-
Taylor Otwell authored
Update laravel/session/drivers/cookie.php
-
Taylor Otwell authored
Handles Redis password
-
Taylor Otwell authored
The tiniest PR you've ever seen.
-
Taylor Otwell authored
Documentation update for Fluent
-
Taylor Otwell authored
Event firing of 500s now passes along the $exception object
-
Taylor Otwell authored
One more fix about custom query grammar
-
Taylor Otwell authored
Add flushing support to the Redis cache driver
-
Taylor Otwell authored
Simply combines @import rules in public/laravel/css/style.css
-
Taylor Otwell authored
Update laravel/request.php
-
Taylor Otwell authored
-
Taylor Otwell authored
-
Taylor Otwell authored
Allow the renaming of the drivers remember cookie
-
Taylor Otwell authored
Fix for double escaping of queries in the profiler
-
Taylor Otwell authored
-
Taylor Otwell authored
-
Taylor Otwell authored
Minor correction to controllers documentation.
-
- 27 Mar, 2013 1 commit
-
-
bruston authored
Signed-off-by: bruston <benjy.ruston@gmail.com>
-
- 22 Mar, 2013 6 commits
-
-
Eugen authored
Sometimes the logged queries would be rendered with visible HTML entities in the profiler, due to double encoding (You know, &gt; stuff). I could not find out why it was being escaped twice, but I found an easy fix: since PHP 5.2.3 the htmlspecialchars function had a double_encoding parameter that could be set to false. Voilà!
-
Taylor Otwell authored
Adding PATCH to the route register.
-
Jesse O'Brien authored
Self-explanatory.
-
Taylor Otwell authored
-
Taylor Otwell authored
Fix for Postgresql PDO::FETCH_ASSOC
-
Alex authored
-
- 17 Mar, 2013 1 commit
-
-
Alex authored
-
- 12 Mar, 2013 1 commit
-
-
Taylor Otwell authored
Syntax fix for PHP 5.3 (#1690)
-