- 05 May, 2013 1 commit
-
-
Taylor Otwell committed
-
- 04 May, 2013 1 commit
-
-
when used in a setup task. The output created didn't add a line ending.
dotramses committed
-
- 01 May, 2013 1 commit
-
-
Taylor Otwell committed
-
- 12 Apr, 2013 1 commit
-
-
Returns true if the instance was registered with IoC::instance
Max committed
-
- 09 Apr, 2013 1 commit
-
-
Signed-off-by: aeberhardo <aeberhard@gmx.ch>
aeberhardo committed
-
- 07 Apr, 2013 1 commit
-
-
Taylor Otwell committed
-
- 05 Apr, 2013 2 commits
- 04 Apr, 2013 1 commit
-
-
get_dirty() must compare using Not Identical (!==) on place of Not Equal (!=). For example, changing null to false don't make the model dirty.
Bernardo Rittmeyer committed
-
- 03 Apr, 2013 2 commits
-
-
Colin Viebrock committed
-
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 1 commit
-
-
Signed-off-by: Steven Klar <steven.klar@mayflower.de>
Steven Klar committed
-
- 29 Mar, 2013 2 commits
-
-
Pavel Puchkin committed
-
Pavel Puchkin committed
-
- 28 Mar, 2013 3 commits
-
-
Taylor Otwell committed
-
Taylor Otwell committed
-
Taylor Otwell committed
-
- 27 Mar, 2013 1 commit
-
-
Signed-off-by: bruston <benjy.ruston@gmail.com>
bruston committed
-
- 22 Mar, 2013 4 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 -
Self-explanatory.
Jesse O'Brien committed -
Taylor Otwell committed
-
Alex committed
-
- 17 Mar, 2013 1 commit
-
-
Alex committed
-
- 12 Mar, 2013 2 commits
-
-
Pavel Puchkin committed
-
Pavel Puchkin committed
-
- 27 Feb, 2013 1 commit
-
-
When running nginx with php-cgi (Fast-CGI): spawn-fcgi -a 127.0.0.1 -p 10081 -C 50 -u nobody -f /usr/local/php5317/bin/php-cgi The Request::cli() method will determine the web request as run from the command line. Add ` PHP_SAPI != "cgi-fcgi" ` to resolve it.
David Lin committed
-
- 20 Feb, 2013 1 commit
-
-
Duru Can Celasun committed
-
- 18 Feb, 2013 1 commit
-
-
Pavel Puchkin committed
-
- 14 Feb, 2013 1 commit
-
-
Kirk Bushell committed
-
- 12 Feb, 2013 1 commit
-
-
Dave Clayton committed
-
- 07 Feb, 2013 4 commits
-
-
aditya committed
-
Kelt Dockins committed
-
Kelt Dockins committed
-
If password is set in the config (database.php), before to issue any command it starts the Auth process, otherwise it starts with SELECT as usuale.
Pasvaz committed
-
- 06 Feb, 2013 1 commit
-
-
Tz-Huan Huang committed
-
- 03 Feb, 2013 2 commits
- 01 Feb, 2013 1 commit
-
-
When query time is larger than one second 'array_sum' cannot convert it to float right. Also, it is better to fire 'laravel.query' event with raw time as an argument rather than its string representation
Pavel Puchkin committed
-
- 24 Jan, 2013 1 commit
-
-
frankwong committed
-
- 23 Jan, 2013 1 commit
-
-
frankwong committed
-