Skip to content
  1. Jun 09, 2002
  2. Jun 08, 2002
    • Kjartan Mannes's avatar
      - improved module descriptions. · 5d36c704
      Kjartan Mannes authored
      - removed admin options for queue and comment module if the modules are not
        loaded.
      - nodes are now auto promoted when queue module isn't enabled.
      - moderation result block is now visible by the node author.
      5d36c704
    • Dries Buytaert's avatar
      · 37ee9eed
      Dries Buytaert authored
      - Bugfix: we now keep a per-node $date cache in comment_is_new().  Suggested
        by Natrak.
      37ee9eed
    • Dries Buytaert's avatar
      · 291d119b
      Dries Buytaert authored
      - Removed non-existing theme from both update.php and database.mysql.  Patch
        by Marco.
      291d119b
    • Dries Buytaert's avatar
      · 92665ec0
      Dries Buytaert authored
      - Bugfix: clicking "help" on the "site configuration" didn't show any help.
      92665ec0
    • Dries Buytaert's avatar
      · e6096b60
      Dries Buytaert authored
      - Extended the blog module documentation with input from the Drupal
        handbook.  The documentation is not particulary exciting/good but
        it is better than what it used to be.
      e6096b60
    • Dries Buytaert's avatar
      · 1c929509
      Dries Buytaert authored
      - Removed the redundant "enable/disable" setting from the Blogger API module.
      
      - Revised the documentation: fixed about 5 typos, removed the bit about
        downloading the module from the Drupal contributions repository,
        updated the installation guidelines, etc.
      1c929509
    • Dries Buytaert's avatar
      · 2b3ca2d3
      Dries Buytaert authored
      - More documentation updates.  Added "Requires crontab" message to the
        settings that require crontab, make some things more consistent, etc.
      2b3ca2d3
    • Dries Buytaert's avatar
      · 7d9fc047
      Dries Buytaert authored
      - Clarified the help texts a bit.
      7d9fc047
    • Dries Buytaert's avatar
      · 19736b42
      Dries Buytaert authored
      - Removed the redundant option to enable or disable the locale module.
      19736b42
    • Dries Buytaert's avatar
      · f770b786
      Dries Buytaert authored
      - Small detail in the help.
      f770b786
  3. Jun 06, 2002
    • Dries Buytaert's avatar
      · 68129fd5
      Dries Buytaert authored
      - Changed some "default NULL"s to "default NOT NULL"s as this only works on
        recent MySQL versions.  I included the diffs for review.
      
      update.php:
      -  update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno in
      +  update_sql("CREATE TABLE search_index (word varchar(50) default NOT NULL, ln
      
      database.mysql:
      -  word varchar(50) default NULL,
      -  lno int(10) unsigned default NULL,
      -  type varchar(16) default NULL,
      -  count int(10) unsigned default NULL,
      + word varchar(50) NOT NULL,
      + lno int(10) unsigned NOT NULL,
      + type varchar(16) default NULL,
      + count int(10) unsigned default NULL,
      68129fd5
    • Dries Buytaert's avatar
      · 3eb607b8
      Dries Buytaert authored
      - The Drupal module is no longer required.
      3eb607b8
  4. Jun 04, 2002
  5. Jun 02, 2002
  6. Jun 01, 2002
  7. May 31, 2002
  8. May 30, 2002
    • Dries Buytaert's avatar
      · af075abb
      Dries Buytaert authored
      - Fixed but #197: "Shouldn't going to index.php?or=xxx show all content
        for the term rather than only promoted content?".  Reported by Barry,
        fixed by Revar's patch.
      af075abb
  9. May 29, 2002
  10. May 26, 2002
    • Dries Buytaert's avatar
      · 2156045a
      Dries Buytaert authored
      - Change to use the proper db_query syntax.  Patch by Marco.
      2156045a
    • Dries Buytaert's avatar
      · 0908a06c
      Dries Buytaert authored
      - Replaced a "mysql_query()" by a "db_query" as identified by Moshe (see
        his sandbox) and fixed some typos in the module's comments.
      
        * Moshe: what are the $wordlist changes you made?  Mind to elaborate a
                 bit on those?
      
        * TODO: validate the SQL queries used in the search module using a SQL
                validator tool - I wonder whether they are ANSI compliant.
      
      
      -    // If the word is preceeded by a "+", then this word is required, and
      +    // If the word is proceeded by a "+", then this word is required, and
      
      -        $inputword = ("INSERT INTO search_index VALUES('$key', ". $node["lno"] .", '$node_type', $value)");
      -        mysql_query($inputword);
      +        db_query("INSERT INTO search_index VALUES('$key', ". $node["lno"] .", '$node_type', $value)");
             }
      
      -      // Zap the weighted words array, so we dont add multiples.
      +      // Zap the weighted words array, so we don't add multiples.
      0908a06c