Skip to content
  1. Dec 08, 2007
  2. Sep 04, 2007
  3. Jul 05, 2006
  4. Jun 08, 2006
  5. Apr 11, 2006
  6. Nov 13, 2005
  7. Oct 22, 2005
  8. Aug 25, 2005
  9. Aug 14, 2005
  10. Aug 11, 2005
    • Dries Buytaert's avatar
      - Patch #28482 by Uwe: add CVS $Id$ tags to all source files in Drupal core.... · b69b43d1
      Dries Buytaert authored
      - Patch #28482 by Uwe: add CVS $Id$ tags to all source files in Drupal core. This allows admins to know exactly which version of which files they use. In addition I want to use CVS $Id$ tags in my upcoming security.module to check for possible vulnerabilities. That's not possible if some files simply don't have $Id$s.
      
      Note: I also (mostly) unified the tags to use the "// ID" form instead of "/* ID */", but that's more of a cosmetic issue. I'm not sure whether *.txt files and the stuff in themes/ need tags(?).
      b69b43d1
  11. Jul 13, 2005
  12. Jun 29, 2005
  13. Jan 06, 2004
    • Steven Wittens's avatar
      - Improved XML encoding fix. There is now a function drupal_xml_parser_create(): · b817bdb3
      Steven Wittens authored
      /**
       * Wrapper around xml_parser_create() which extracts the encoding from the XML
       * data first and sets the output encoding to UTF-8. This function should be
       * used instead of xml_parser_create(), because PHP's XML parser doesn't check
       * the input encoding itself.
       *
       * This is also where unsupported encodings should be converted.
       * Callers should take this into account: $data might have been changed after
       * the call.
       *
       * @param $data The XML data which will be parsed later.
       */
      b817bdb3
  14. Nov 28, 2003
  15. May 19, 2003
    • Dries Buytaert's avatar
      · 65293a81
      Dries Buytaert authored
      - Patch by Kjartan:
          $_SERVER["HTTP_RAW_POST_DATA"] --> $GLOBALS["HTTP_RAW_POST_DATA"]
      
        Al: can you confirm that this fixes your problem?
      65293a81
  16. May 13, 2003
    • Dries Buytaert's avatar
      · c2d2fb73
      Dries Buytaert authored
      - Fixed a typo in the PostgreSQL database scheme.  Patch by Michael Frankowski.
      
      - Fixed a typo in the MSSQL database scheme.  Patch by Michael Frankowski.
      
      - Removed dependency on "register_globals = on"!  Patches by Michael Frankowski.
      
        Notes:
      
        + Updated the patches to use $foo["bar"] instead of $foo['bar'].
        + Updated the INSTALL and CHANGELOG files as well.
      
      - Tiny improvement to the "./scripts/code-clean.sh" script.
      c2d2fb73
  17. Dec 05, 2001
    • Dries Buytaert's avatar
      · 6f0332a7
      Dries Buytaert authored
      - Upgraded the XML-RPC libraries to the latest version as suggested by
        Julian.
      6f0332a7
  18. Sep 27, 2001
    • Dries Buytaert's avatar
      · 4a0e498f
      Dries Buytaert authored
      - a batch of updates, including some experimental changes to the moderation
        of comments and nodes.
      4a0e498f
  19. Sep 25, 2001
  20. Sep 09, 2001
    • Dries Buytaert's avatar
      · 1b7510ee
      Dries Buytaert authored
      - Added an XML-RPC server.  Modules that want to export remote procedure
        calls can implement the new 'xmlrpc' hook.
      
        Example:
      
         function mymodule_xmlrpc() {
           return array("drupal.myfunction" => array("function" => "mymodule_myfunction"));
         }
      1b7510ee