Skip to content
Snippets Groups Projects
  1. Jun 11, 2022
  2. May 29, 2022
  3. May 12, 2022
  4. May 03, 2022
  5. Apr 26, 2022
  6. Feb 22, 2022
  7. Jan 05, 2022
  8. Mar 14, 2021
  9. Jan 16, 2021
  10. Aug 25, 2020
  11. Aug 10, 2020
  12. Oct 04, 2019
  13. Oct 19, 2018
  14. Oct 18, 2018
  15. Aug 22, 2018
  16. Aug 13, 2018
  17. Jun 10, 2018
  18. Jun 01, 2018
  19. May 31, 2018
  20. Nov 29, 2017
  21. Oct 03, 2016
  22. 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
  23. 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
  24. Jun 29, 2016
  25. Apr 20, 2016
  26. Feb 26, 2016
  27. Nov 06, 2015
  28. Oct 16, 2015
  29. Aug 06, 2015
  30. Jul 31, 2015
  31. Jun 10, 2015
  32. Apr 20, 2015
  33. Jan 12, 2015
Loading