Skip to content
Snippets Groups Projects
  1. Mar 18, 2015
  2. Mar 16, 2015
  3. Jan 14, 2015
  4. 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
  5. Dec 18, 2014
  6. Dec 17, 2014
  7. Dec 01, 2014
  8. Nov 27, 2014
  9. Oct 15, 2014
  10. Oct 14, 2014
  11. 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
  12. Jul 18, 2014
  13. Jul 12, 2014
  14. May 14, 2014
  15. May 13, 2014
  16. Apr 30, 2014
  17. Apr 16, 2014
  18. Apr 14, 2014
  19. Mar 20, 2014
  20. 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
  21. Mar 16, 2014
  22. 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
  23. Mar 14, 2014
  24. Mar 13, 2014
  25. Mar 12, 2014
  26. Mar 06, 2014
    • Christopher Smith's avatar
      Fix unittests broken by previous two commits · c01cdb70
      Christopher Smith authored
      Mostly this is for unit tests which use of \$_SERVER['REMOTE_USER']
      
      It ensures the reference/alias connection between \$INPUT->server
      and \$_SERVER is renewed before each test.  Tests using TestRequest
      class will replace this \$INPUT with their own.
      c01cdb70
  27. Mar 05, 2014
Loading