Skip to content
Snippets Groups Projects
  1. Nov 29, 2017
  2. Oct 03, 2016
  3. Jul 19, 2016
    • Jaime Pérez's avatar
      Do not enforce reading the configuration from files. · 8eaf60b1
      Jaime Pérez authored
      The www/_include.php script, included by all scripts in www/, checks unconditionally for the existence of the config.php file. However, this prevents us from testing the scripts automatically. Instead of checking for the file, we just try to load the configuration, and live with it if it works. That way we can pre-load the configuration using SimpleSAML_Configuration::loadFromArray(), as we are doing in some tests.
      8eaf60b1
  4. Jul 06, 2016
    • Jaime Pérez's avatar
      bugfix: Exception handler compatible with PHP 7. · b2bfd47d
      Jaime Pérez authored
      PHP 7 changed the way it handles internal errors. Now, Exception objects inherit from the Throwable interface, as well as the new Error objects. Internal functions throw Error objects now instead of raising an error, so the exception handler would need to handle them as well. Therefore, the exception handler is no longer guaranteed to receive an Exception object. We need now to discern whether the parameter is an exception (and continue our business as usual), or an Error (in case such thing exists, only PHP 7), and in this last case parse it and let the error handler do its stuff.
      
      This should resolve #330.
      b2bfd47d
  5. Jun 29, 2016
  6. Apr 20, 2016
  7. Feb 26, 2016
  8. Nov 06, 2015
  9. Oct 16, 2015
  10. Aug 06, 2015
  11. Jul 31, 2015
  12. Jun 10, 2015
  13. Apr 20, 2015
  14. Jan 12, 2015
  15. Jul 09, 2014
  16. Apr 28, 2014
    • Thijs Kinkhorst's avatar
      Also check $errno against PHP's error_reporting. · 04da32d7
      Thijs Kinkhorst authored
      This is necessary to make sure that if a minimum PHP error level
      has been set, this is also respected by SSP's error handler. Most
      notably, this will make calls prefixed with '@', the PHP warning
      silencer, actually silence the warnings. The SSP code tries to
      makes use of the @ sign on various places around the code, but
      this will only work if it's actually checked here.
      04da32d7
  17. Dec 08, 2011
  18. Mar 07, 2011
  19. Feb 24, 2010
  20. Jan 22, 2010
  21. Jan 05, 2010
  22. Dec 04, 2009
  23. Oct 16, 2009
  24. Aug 24, 2009
  25. Aug 18, 2009
  26. Aug 13, 2009
  27. Aug 07, 2009
  28. Aug 03, 2009
  29. Jul 17, 2009
  30. Jul 14, 2009
  31. Jul 13, 2009
  32. Feb 26, 2009
  33. Feb 25, 2009
  34. Jun 06, 2008
  35. Mar 06, 2008
Loading