1. 05 May, 2013 1 commit
  2. 04 May, 2013 1 commit
  3. 01 May, 2013 1 commit
  4. 12 Apr, 2013 1 commit
  5. 09 Apr, 2013 1 commit
  6. 07 Apr, 2013 1 commit
  7. 05 Apr, 2013 2 commits
  8. 04 Apr, 2013 1 commit
  9. 03 Apr, 2013 2 commits
    • add macros to tables · 906d0d85
      Colin Viebrock committed
    • Check application.ssl when setting a secure cookie · 785e168f
      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
  10. 02 Apr, 2013 1 commit
  11. 29 Mar, 2013 2 commits
  12. 28 Mar, 2013 3 commits
  13. 27 Mar, 2013 1 commit
  14. 22 Mar, 2013 4 commits
  15. 17 Mar, 2013 1 commit
  16. 12 Mar, 2013 2 commits
  17. 27 Feb, 2013 1 commit
    • Update laravel/request.php · 5929f8e5
      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
  18. 20 Feb, 2013 1 commit
  19. 18 Feb, 2013 1 commit
  20. 14 Feb, 2013 1 commit
  21. 12 Feb, 2013 1 commit
  22. 07 Feb, 2013 4 commits
  23. 06 Feb, 2013 1 commit
  24. 03 Feb, 2013 2 commits
  25. 01 Feb, 2013 1 commit
  26. 24 Jan, 2013 1 commit
  27. 23 Jan, 2013 1 commit