- 03 Apr, 2013 1 commit
-
-
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.
Robert K committed
-
- 02 Apr, 2013 2 commits
-
-
Add unregister IoC
Taylor Otwell committed -
Signed-off-by: Steven Klar <steven.klar@mayflower.de>
Steven Klar committed
-
- 29 Mar, 2013 4 commits
-
-
Exit with non-zero if command fails, useful in scripting and CI
Taylor Otwell committed -
Pavel Puchkin committed
-
Ability to flush file-based cache storage
Taylor Otwell committed -
Pavel Puchkin committed
-
- 28 Mar, 2013 24 commits
-
-
Taylor Otwell committed
-
Taylor Otwell committed
-
URI data available in the before filter.
Taylor Otwell committed -
Add Command alias to application configuration
Taylor Otwell committed -
Add calling class and function information in logs
Taylor Otwell committed -
Romanian language
Taylor Otwell committed -
Fix bug in ANBU that cause wrong total time showing on SQL tab
Taylor Otwell committed -
Make HTML escaping optional for label contents.
Taylor Otwell committed -
Update laravel/session/drivers/cookie.php
Taylor Otwell committed -
Handles Redis password
Taylor Otwell committed -
The tiniest PR you've ever seen.
Taylor Otwell committed -
Documentation update for Fluent
Taylor Otwell committed -
Event firing of 500s now passes along the $exception object
Taylor Otwell committed -
One more fix about custom query grammar
Taylor Otwell committed -
Add flushing support to the Redis cache driver
Taylor Otwell committed -
Simply combines @import rules in public/laravel/css/style.css
Taylor Otwell committed -
Update laravel/request.php
Taylor Otwell committed -
Taylor Otwell committed
-
Taylor Otwell committed
-
Allow the renaming of the drivers remember cookie
Taylor Otwell committed -
Fix for double escaping of queries in the profiler
Taylor Otwell committed -
Taylor Otwell committed
-
Taylor Otwell committed
-
Minor correction to controllers documentation.
Taylor Otwell committed
-
- 27 Mar, 2013 1 commit
-
-
Signed-off-by: bruston <benjy.ruston@gmail.com>
bruston committed
-
- 22 Mar, 2013 6 commits
-
-
Sometimes the logged queries would be rendered with visible HTML entities in the profiler, due to double encoding (You know, > 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à!
Eugen committed -
Adding PATCH to the route register.
Taylor Otwell committed -
Self-explanatory.
Jesse O'Brien committed -
Taylor Otwell committed
-
Fix for Postgresql PDO::FETCH_ASSOC
Taylor Otwell committed -
Alex committed
-
- 17 Mar, 2013 1 commit
-
-
Alex committed
-
- 12 Mar, 2013 1 commit
-
-
Syntax fix for PHP 5.3 (#1690)
Taylor Otwell committed
-