Commit Graph

3531 Commits

Author SHA1 Message Date
Taylor Otwell c1a8b83574 fix array input has. 2013-03-28 15:35:09 -05:00
Taylor Otwell 7e14c8c4c6 Merge pull request #1822 from bruston/doc-fix-controllers
Minor correction to controllers documentation.
2013-03-28 13:25:25 -07:00
bruston 53a14206b1 Minor correction to controllers documentation.
Signed-off-by: bruston <benjy.ruston@gmail.com>
2013-03-27 13:07:48 +00:00
Eugen 944d98d16e Fix for double escaping of queries in the profiler
Sometimes the logged queries would be rendered with visible
HTML entities in the profiler, due to double encoding (You know,
&amp;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à!
2013-03-23 00:58:43 +01:00
Taylor Otwell 9f64de98f7 Merge pull request #1805 from JesseObrien/patch-1
Adding PATCH to the route register.
2013-03-22 13:08:31 -07:00
Jesse O'Brien 318bb36072 Adding PATCH to the route register.
Self-explanatory.
2013-03-22 17:04:15 -03:00
Taylor Otwell 88cde2c91d update change log. 2013-03-21 23:22:44 -05:00
Taylor Otwell 2d863c45fc Merge pull request #1803 from alexgalletti/master
Fix for Postgresql PDO::FETCH_ASSOC
2013-03-21 21:17:22 -07:00
Alex 7a289ac50a Fix for Postgresql PDO::FETCH_ASSOC 2013-03-21 23:13:51 -05:00
Alex f5997b7f97 Allow the renaming of the drivers remember cookie 2013-03-16 21:40:33 -05:00
Taylor Otwell 1bd93c3327 Merge pull request #1781 from neoascetic/1690_fix_for_php53
Syntax fix for PHP 5.3 (#1690)
2013-03-12 06:24:23 -07:00
Pavel Puchkin a0c2adecdc One more fix - wrong property name 2013-03-12 16:16:45 +11:00
Pavel Puchkin cf9013403b Syntax fix for PHP 5.3 (#1690) 2013-03-12 16:09:16 +11:00
David Lin 5929f8e537 Update laravel/request.php
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.
2013-02-27 08:54:57 +08:00
David Mosher eccd8375db Combined @imports in style.css
Removes extraneous http request from style.css
2013-02-26 09:00:52 -08:00
Taylor Otwell 2e8b5575e5 Merge pull request #1690 from kdocki/master
IoC container not resolving classes with optional parameters (i.e. models that use Eloquent)
2013-02-25 20:11:33 -08:00
Duru Can Celasun 31e21971a0 Add flushing support to the Redis cache driver 2013-02-20 09:17:59 +02:00
Pavel Puchkin 9003957b28 One more fix about custom query grammar 2013-02-18 15:18:10 +11:00
Kirk Bushell bc36205a99 Updated error class to pass the Exception for the 500 triggered event. 2013-02-15 09:50:32 +11:00
Dave Clayton 43afc7b9fa Made how to do AND WHERE in fluent more explicit in the docs 2013-02-12 14:54:13 +01:00
aditya 8e27840718 (Very) minor typo fix. 2013-02-08 05:12:06 +05:30
Kelt Dockins 1ed7ec98ba adding unit tests for ioc changes 2013-02-07 00:13:00 -06:00
Kelt Dockins b48031b04a ioc resolves classes with optional params and accepts arguments 2013-02-06 23:30:57 -06:00
Pasvaz 2144637e12 Handles Redis password
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.
2013-02-07 03:35:42 +01:00
Tz-Huan Huang 068ddef312 Update laravel/session/drivers/cookie.php 2013-02-06 13:35:03 +08:00
Chris How 87c588c610 Updated docs 2013-02-03 19:34:13 +01:00
Chris How f93dfccd21 HTML::entities() now optional on label contents 2013-02-03 19:15:55 +01:00
Pavel Puchkin a2cafaa367 Fix bug in ANBU that cause wrong total time showing on Queries tab
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
2013-02-01 11:10:02 +11:00
Flavy 720480e74f Added romanian language 2013-02-01 01:30:20 +02:00
frankwong 023e11e691 Fixed bug where laravel is generating error log from outside of application classes. 2013-01-23 20:56:48 -08:00
Matt Helm 4cb904f44d Fix indentation and double slashes 2013-01-23 10:23:39 -05:00
Matt Helm e48a2d723b Fix indentation and double slashes 2013-01-23 10:19:44 -05:00
frankwong 5abb778b16 Added class and function information to log messages based on where the log message was initiated. 2013-01-22 16:04:38 -08:00
Matt Helm 818be60551 Add Command alias to application configuration
Signed-off-by: Matt Helm <helmme@n3k8.net>
2013-01-17 16:11:18 -05:00
demsey2 18e5817117 URI data is not available in the before filter
More info: http://forums.laravel.io/viewtopic.php?id=4458
2013-01-17 14:23:20 +00:00
Dayle Rees 23d23dd07c Merge pull request #1591 from eddiemonge/patch-1
Update laravel/documentation/requests.md
2013-01-13 06:07:25 -08:00
Dayle Rees d500ab2259 Update license.txt 2013-01-13 14:05:22 +00:00
Eddie Monge Jr. f997838f5f Update laravel/documentation/requests.md
Fixed typo. Missing opening paren
2013-01-12 17:32:38 -08:00
Taylor Otwell 252990455e Merge pull request #1586 from Pasvaz/patch-1
Implemented OPTIONS verb
2013-01-11 17:24:23 -08:00
Pasvaz 9dd0a21f8d Implemented OPTIONS verb
Laravel crashes when an OPTIONS request is issued
2013-01-12 02:20:37 +01:00
Taylor Otwell 63bf89efd5 Merge branch 'develop' of github.com:laravel/laravel into develop 2013-01-10 16:21:01 -06:00
Taylor Otwell c9faa957a3 Merge branch 'master' of github.com:laravel/laravel into develop 2013-01-10 16:20:09 -06:00
Taylor Otwell ab2581dba5 increment version. 2013-01-10 16:19:57 -06:00
Taylor Otwell 06538cc8c0 update change log. 2013-01-10 16:19:36 -06:00
Taylor Otwell bd11b2a8af Merge pull request #1577 from inverse/develop
Fixed issue with html unit tests
2013-01-10 14:08:40 -08:00
Taylor Otwell 2e82761788 Merge pull request #1582 from AndreasHeiberg/patch-1
fixed typo
2013-01-10 14:08:23 -08:00
Taylor Otwell 6c177ab3b1 turn off profile by default. 2013-01-10 16:07:46 -06:00
Taylor Otwell 3b8d8bbf77 Merge pull request #1584 from bpierre/bug/doc-fixes
Documentation fixes
2013-01-10 14:03:46 -08:00
Pierre Bertet 4a47bda118 Documentation: markdown syntax
Signed-off-by: Pierre Bertet <bonjour@pierrebertet.net>
2013-01-10 16:10:07 +01:00
Pierre Bertet 347f1b8d97 Documentation: typo
Signed-off-by: Pierre Bertet <bonjour@pierrebertet.net>
2013-01-10 16:10:07 +01:00