Skip to content
Snippets Groups Projects
  1. May 15, 2015
  2. Apr 25, 2015
  3. Mar 18, 2015
  4. Mar 16, 2015
  5. Jan 14, 2015
  6. Jan 07, 2015
    • Andreas Gohr's avatar
      Remove error supression for file_exists() · 79e79377
      Andreas Gohr authored
      In an older version of PHP a file_exists() call would issue a warning
      when the file did not exist. This was fixed in later PHP releases. Since
      we require PHP 5.3 now, there's no need to supress any error here
      anymore. This might even give a minor performance boost.
      79e79377
  7. Dec 18, 2014
  8. Dec 17, 2014
  9. Dec 01, 2014
  10. Nov 27, 2014
  11. Oct 15, 2014
  12. Oct 14, 2014
  13. Sep 23, 2014
    • Andreas Gohr's avatar
      added filter method to INPUT class · 37abef5f
      Andreas Gohr authored
      the filter() function can be chained between the accessor and the value
      function to get a filtered value. When no filter allable is given in the
      filter() function, stripctl() is used to strip all control chars (ASCII<32)
      
      Examples:
      
        $INPUT->post->filter()->str('foobar');
        $INPUT->get->filter('myfilter')->int('baz');
      37abef5f
  14. Jul 18, 2014
  15. Jul 12, 2014
  16. May 14, 2014
  17. May 13, 2014
  18. Apr 30, 2014
  19. Apr 16, 2014
  20. Apr 14, 2014
  21. Mar 20, 2014
  22. Mar 17, 2014
    • Andreas Gohr's avatar
      completely new base for CLI scripts · 496e3a6f
      Andreas Gohr authored
      This introduces an abstract base class that command line tools need to
      inherit from. It provides a simple framework for registering accepted
      command line options and provides commonly needed things like help
      output and colored text.
      
      Existing CLI scripts still need to be converted.
      496e3a6f
  23. Mar 16, 2014
  24. Mar 15, 2014
    • Andreas Gohr's avatar
      strip sourcemaps in CSS and JS #601 · f8fb2d18
      Andreas Gohr authored
      source maps are invalid for our dispatched sources and may even cause
      problems. this makes sure any sourcemap declarations are stripped from
      the output
      f8fb2d18
  25. Mar 14, 2014
  26. Mar 13, 2014
Loading