Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - removed this script, it is too simple to be true ... | Dries Buytaert | 2001-10-15 |
| | |||
* | - Fixed the script's extention. | Dries Buytaert | 2001-10-15 |
| | |||
* | - Fixed the script's extention: it's a shell script, not a Perl script. | Dries Buytaert | 2001-10-15 |
| | |||
* | - I tidied up most SQL tables to be more consistent with the rest of the | Dries Buytaert | 2001-10-14 |
| | | | | | | | tables: I changed all "id"s to "xid"s where "x" is the first letter of the table name. I also renamed all remaining "userid"s to "uid"s as I mentioned I would do. Take a look at ./drupal/updates/3.00-to-x.xx.sql for the MySQL updates. | ||
* | - Small improvement: quoted all strings when used as an array index. | Dries Buytaert | 2001-10-14 |
| | |||
* | - Small improvement to db_query() to make debuging queries a bit more easy. | Dries Buytaert | 2001-10-14 |
| | |||
* | - Quote string tables indexes (patch by Mike Krus). | Dries Buytaert | 2001-10-14 |
| | |||
* | - Pass theme objects by reference, avoids creating copies and lets called | Dries Buytaert | 2001-10-14 |
| | | | | functions to store data in the theme (patch by Mike Krus). | ||
* | - translate the link (patch by Mike Krus). | Dries Buytaert | 2001-10-14 |
| | |||
* | - Fixed the remaining SQL problems when running MySQL in ANSI mode. | Dries Buytaert | 2001-10-13 |
| | | | | (moderation/comment related) | ||
* | - fixed 4 SQL queries to use ANSI SQL instead: '||' --> 'OR' | Dries Buytaert | 2001-10-12 |
| | |||
* | - fixed a small typo: "hour" --> "hours" | Dries Buytaert | 2001-10-12 |
| | |||
* | - replaced a header("Location: xxx") by a drupal_goto() | Dries Buytaert | 2001-10-12 |
| | |||
* | - added a few missing rollback()'s and corrected a typo | Dries Buytaert | 2001-10-12 |
| | |||
* | - improved the node sorting | Dries Buytaert | 2001-10-11 |
| | |||
* | - added sequence tables | Dries Buytaert | 2001-10-11 |
| | | | | | | | | - fixed bug in node_page() - fixed bug in db_result() - fixed rss glitch | ||
* | - fixed problem with language setting not being saved: patch by Axel | Dries Buytaert | 2001-10-09 |
| | |||
* | - PEAR-ification of Drupal by claw: you can now host Drupal on a wide | Dries Buytaert | 2001-10-09 |
| | | | | | | | range of databases including MySQL, PostgreSQL, MSSQL, and others. For additional information and an 'how to upgrade', check the mails sent to the mailing list. | ||
* | - added a comment() function to the base theme: you don't have to overload | Dries Buytaert | 2001-10-07 |
| | | | | | | | it in your custom themes - moved 'theme_account()' to the base theme as '$theme->user()' so that it can be themed. | ||
* | - Added a new theme! | Dries Buytaert | 2001-10-07 |
| | |||
* | - Moved theme 'jeroen' and 'yaroon' to drupal-contrib. | Dries Buytaert | 2001-10-06 |
| | |||
* | - fixed 2 bugs that where introduced by moving the index.php to node_page() | Dries Buytaert | 2001-10-05 |
| | | | | in node.module. | ||
* | - Improved search architecture derived from Axel's new search patches. | Dries Buytaert | 2001-10-03 |
| | | | | | | | (There is room for improvement so let's go from these ... and build on them.) - Removed some $status's by calls to node_status(). | ||
* | - tidied up some "$status"-es and removed "$rstatus". | Dries Buytaert | 2001-10-02 |
| | |||
* | - updated the CHANGELOG | Dries Buytaert | 2001-10-02 |
| | |||
* | - a small module to notify or ping weblogs.com | Dries Buytaert | 2001-10-02 |
| | |||
* | - improved the tracker.module so that it shows all the recent comments | Dries Buytaert | 2001-10-02 |
| | | | | instead of all recent comments to recent nodes. | ||
* | - bugfix: renamed 'conf_default' to 'system_default' | Dries Buytaert | 2001-10-01 |
| | |||
* | - small improvement to 'drupal_goto()' | Dries Buytaert | 2001-09-30 |
| | |||
* | - fixed bug: 'account_perm()' should have been 'user_perm()' | Dries Buytaert | 2001-09-30 |
| | |||
* | - small bugfix in drupal_goto | Dries Buytaert | 2001-09-30 |
| | |||
* | - typo | Dries Buytaert | 2001-09-30 |
| | |||
* | - replaced all 'header("Location: foo")'s by a call to 'drupal_goto()' | Dries Buytaert | 2001-09-30 |
| | | | | | which will append the session ID to the uri 'foo' when PHP is compiled with '--enable-transe-sid'. | ||
* | - small improvement to the "user blogs" block | Dries Buytaert | 2001-09-30 |
| | |||
* | - small update | Dries Buytaert | 2001-09-29 |
| | |||
* | - fixed a SQL bug in the "next / prev" code of book.module | Dries Buytaert | 2001-09-29 |
| | |||
* | - fixed small glitch in node_del() | Dries Buytaert | 2001-09-28 |
| | | | | | | | | | | | | | | | | | | | | | - fixed small glitch in comment_del() - changed the API of the form() function. The first parameter, the "action"-attribute in the <form>-tag has been made optional. By default, it will be set to "$REQUEST_URI". Why? Because in 98% of the cases we would do: global $REQUEST_URI; $form = form($REQUEST_URI, $form_content); while we can do: $form = form($form_content); now. Update your modules (and sorry for the inconvenience)! | ||
* | - fixed typo: | Dries Buytaert | 2001-09-28 |
| | | | | "call to undefined function: db_num_row()" | ||
* | - bugfix: a permission was missing from the permission table | Dries Buytaert | 2001-09-28 |
| | |||
* | - removed the themes that are not actively maintained ... | Dries Buytaert | 2001-09-28 |
| | |||
* | - made the selection box translatable (patch by Gerhard) | Dries Buytaert | 2001-09-28 |
| | |||
* | - comment.inc: | Dries Buytaert | 2001-09-28 |
| | | | | | | | + when replying to a comment, the author's name was displayd as being 'anonymous'. - blog.module: + fixed the URLs of the links in the "latest blogs"-block. | ||
* | - bugfix | Dries Buytaert | 2001-09-28 |
| | |||
* | - a batch of updates, including some experimental changes to the moderation | Dries Buytaert | 2001-09-27 |
| | | | | of comments and nodes. | ||
* | - book.module: fixed "/admin.php" bug reported by Gerhard. | Dries Buytaert | 2001-09-27 |
| | | | | - search.module: made the search categories translatable. | ||
* | - Enhancement: added better help and translations to node.module. | Dries Buytaert | 2001-09-26 |
| | | | | (patch by Alex) | ||
* | - fixed a HTML typo as reported by Alexander | Dries Buytaert | 2001-09-26 |
| | |||
* | Bug fixes mostly | Kjartan Mannes | 2001-09-26 |
| | | | | | | | - fixed book.module not generating next/prev links properly - re-added default node options to the admin page - fixed a potential bug in node.php. Nodes with same titles were confusing it at times, should fix the bug reported by Gerhard Killesreiter. | ||
* | Bug fixes mostly | natrak | 2001-09-26 |
| | | | | | | | - fixed book.module not generating next/prev links properly - re-added default node options to the admin page - fixed a potential bug in node.php. Nodes with same titles were confusing it at times, should fix the bug reported by Gerhard Killesreiter. | ||
* | - added node_page() to list what index.php used to list. | Kjartan Mannes | 2001-09-25 |
| | | | | | - made the front page of the system configurable. Now any <node>_page() can be set as the default page. Default is node_page(). |