- 14 May, 2013 10 commits
-
-
Taylor Otwell authored
-
Taylor Otwell authored
fix incorrect padding with multibyte strings encryption
-
Taylor Otwell authored
-
Taylor Otwell authored
Access foreign property in Belongs_To through a getter
-
Taylor Otwell authored
Allow developers to set the Content-Disposition header in Response::download()
-
Taylor Otwell authored
Even more fluent eloquent model via magic setters
-
Taylor Otwell authored
-
Taylor Otwell authored
Language fix for Validation.
-
Taylor Otwell authored
Update .htaccess
-
Taylor Otwell authored
Added Dutch translation for validation rules "date_format" and "required_with".
-
- 13 May, 2013 1 commit
-
-
Jürgen van Dijk authored
-
- 11 May, 2013 1 commit
-
-
Maciej Czyżewski authored
Change link in comment. (2.2 -> current)
-
- 08 May, 2013 3 commits
-
-
Pavel Puchkin authored
-
Pavel Puchkin authored
Now it is possible to use Eloquent's magic setters in chains. For example: $model->set_foo('foo')->take(10)->set_bar(some_function()); // ...even though setters 'foo' and 'bar' are not defined on the model
-
Pavel Puchkin authored
-
- 07 May, 2013 1 commit
-
-
Jason Funk authored
-
- 05 May, 2013 5 commits
-
-
Evgeny Kovalev authored
Signed-off-by: Evgeny Kovalev <Evgeny.Kovalev@gmail.com>
-
Evgeny Kovalev authored
Fix for both Russian and English. NB The bug is fixed for English version V4 already. No language files for other languages for V4. Signed-off-by: Evgeny Kovalev <Evgeny.Kovalev@gmail.com>
-
fpirsch authored
As far as encrypting and paddings are concerned, we are talking about **bytes** and not **characters**. So basic strlen/substr functions must be used instead of their mbstring version.
-
Taylor Otwell authored
Update migrator.php
-
Taylor Otwell authored
-
- 04 May, 2013 1 commit
-
-
dotramses authored
when used in a setup task. The output created didn't add a line ending.
-
- 01 May, 2013 2 commits
-
-
Taylor Otwell authored
-
Taylor Otwell authored
modified IoC::registred()
-
- 12 Apr, 2013 1 commit
-
-
Max authored
Returns true if the instance was registered with IoC::instance
-
- 11 Apr, 2013 2 commits
-
-
Taylor Otwell authored
Incremented version from 3.2.13 to 3.2.14
-
Taylor Otwell authored
Fixed a typo in "Contributing" chapter
-
- 09 Apr, 2013 2 commits
-
-
aeberhardo authored
Signed-off-by: aeberhardo <aeberhard@gmx.ch>
-
aeberhardo authored
Signed-off-by: aeberhardo <aeberhard@gmx.ch>
-
- 07 Apr, 2013 3 commits
-
-
Taylor Otwell authored
Check application.ssl when setting a secure cookie
-
Taylor Otwell authored
-
Taylor Otwell authored
-
- 05 Apr, 2013 3 commits
-
-
Taylor Otwell authored
Changed Laravel\ namespace prefix in some classes calls in helpers to global.
-
jan authored
-
jan authored
global, to allow aliases to work, and allow class extending.
-
- 04 Apr, 2013 3 commits
-
-
Taylor Otwell authored
Add Macros to tables
-
Taylor Otwell authored
get_dirty() comparison is not type safe
-
Bernardo Rittmeyer authored
get_dirty() must compare using Not Identical (!==) on place of Not Equal (!=). For example, changing null to false don't make the model dirty.
-
- 03 Apr, 2013 2 commits
-
-
Colin Viebrock authored
-
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.
-