summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Bugfix: we now keep a per-node $date cache in comment_is_new(). SuggestedDries Buytaert2002-06-08
| | | | by Natrak.
* - Removed non-existing theme from both update.php and database.mysql. PatchDries Buytaert2002-06-08
| | | | by Marco.
* - Bugfix: clicking "help" on the "site configuration" didn't show any help.Dries Buytaert2002-06-08
|
* - Extended the blog module documentation with input from the DrupalDries Buytaert2002-06-08
| | | | | handbook. The documentation is not particulary exciting/good but it is better than what it used to be.
* - Removed the redundant "enable/disable" setting from the Blogger API module.Dries Buytaert2002-06-08
| | | | | | - Revised the documentation: fixed about 5 typos, removed the bit about downloading the module from the Drupal contributions repository, updated the installation guidelines, etc.
* - More documentation updates. Added "Requires crontab" message to theDries Buytaert2002-06-08
| | | | settings that require crontab, make some things more consistent, etc.
* - Clarified the help texts a bit.Dries Buytaert2002-06-08
|
* - Removed the redundant option to enable or disable the locale module.Dries Buytaert2002-06-08
|
* - Small detail in the help.Dries Buytaert2002-06-08
|
* - Changed some "default NULL"s to "default NOT NULL"s as this only works onDries Buytaert2002-06-06
| | | | | | | | | | | | | | | | | | 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,
* - The Drupal module is no longer required.Dries Buytaert2002-06-06
|
* Some small corrections to the system descriptions (as discussed in mailinglist)Steven Wittens2002-06-04
|
* Poll.module improvements:Steven Wittens2002-06-04
| | | | | | - Added links to see poll results when you haven't voted yet (and to go back). - Cleaned up code and moved large sections into separate functions for cleaner code - Cleaned up the way of distinguishing between multiple polls on one page (now it just uses the nid)
* - changed a db_queryd to db_query.Kjartan Mannes2002-06-02
|
* Theme update:Steven Wittens2002-06-01
| | | | Got rid of the drop.org logo's in the themes and replaced them with the Drupal logo.
* - adding descriptions to modules (thanks Joe + Scott).Kjartan Mannes2002-06-01
| | | | | | | | | | - fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update.
* Poll.module:Steven Wittens2002-06-01
| | | | - Added timestamp (created) sorting to polls page.
* UnConeD.themeSteven Wittens2002-06-01
| | | | Removed 'nowrap' from box titles
* Poll.module:Steven Wittens2002-06-01
| | | | Added a page showing a list of older polls.
* Fixed unmoderated polls already showing up in the side-block.Steven Wittens2002-06-01
|
* - Added missing translations and the like.Dries Buytaert2002-05-31
|
* - Fixed missing translations and missing lm()'s (including the one Marco fixed).Dries Buytaert2002-05-31
|
* - Added missing translations (including the one Marco spotted).Dries Buytaert2002-05-31
|
* - fixing who is online block.Kjartan Mannes2002-05-31
|
* - Fixed but #197: "Shouldn't going to index.php?or=xxx show all contentDries Buytaert2002-05-30
| | | | | for the term rather than only promoted content?". Reported by Barry, fixed by Revar's patch.
* - Fixed a drupal_goto() as identified by Marco.Dries Buytaert2002-05-29
|
* - modified the user blocks to use the same layout and trim long usernames toKjartan Mannes2002-05-29
| | | | keep the blocks from ruining theme layouts.
* - added missing access check for linksKjartan Mannes2002-05-29
|
* - cleaning up the access checks in node.module.Kjartan Mannes2002-05-29
| | | | - reverting a taxonomy patch that added $context checking to node/comments.
* - fixing perma links and link to all blogs by user.Kjartan Mannes2002-05-29
| | | | - added access checks to blog block.
* - Change to use the proper db_query syntax. Patch by Marco.Dries Buytaert2002-05-26
|
* - Replaced a "mysql_query()" by a "db_query" as identified by Moshe (seeDries Buytaert2002-05-26
| | | | | | | | | | | | | | | | | | | | | | 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.
* - Bugfix: just before submitting a node, one could change the content ofDries Buytaert2002-05-26
| | | | | | | | | | | | | | | | | | | | | | that node to something that would not have passed the preview pages. Patch by Revar: "If you uploaded a valid file, and filled out the form right, you will get a Submit button. The problem comes in when you choose a different file to upload, and then click Submit. The filestore_save() function cannot do proper validation and handling of the form data, as it only returns a list of what node fields to save. On error, a node entry is still created, but with only the nid field set. The user can't be forced to fix their bad entry." "Add a _form_validate() node hook to process and validate any form results. That way even on Submit, the node code would check the validity of the data, and if bad, it could drop you back to the preview screen with the current bad data warnings. Have it return an array of errors that can be passed in as $error to the _form() hook. If it returns a null array, then there's no errors, and the submit can go through."
* - Bugfix: found a bug with the 'create poll' title attribute. It wasDries Buytaert2002-05-26
| | | | | | getting added to the <a> tag as '0="title" 1="Add a new poll."'. Patch by Revar.
* - Bugfix. When a theme does no longer exist on disk, it should not beDries Buytaert2002-05-25
| | | | | | | | | | | | | | returned by theme_list() as it breaks the site ... The attached patch prevents this from happening but does not remove the theme from the system table in the SQL database - if the theme is removed from the database upon viewing the themes administration page (or another trigger), I guess that is fine. Kjartan: my fix is the right thing to apply because theme_list() is used elsewhere where it requires to return a list of existing themes. Maybe it's a little sad but the current theme loading code might be slower and more complex than the old Drupal 3 theme loading code ... ?
* - Now all themes use the new taxonomy stuff, we can remove the depricatedDries Buytaert2002-05-24
| | | | function node_index() - it was an empty function.
* - Removed a "nowrap" attribute to make theme Marvin look better on IE6.Dries Buytaert2002-05-24
| | | | | | (Suggested by UnConed.) - Made theme Marvin support the taxonomy module.
* - the user_admin_edit() would loose the theme settings.Kjartan Mannes2002-05-24
| | | | - added some more help text to page.module.
* - Coding style changes.Kjartan Mannes2002-05-23
| | | | | - Included modules will now cause parse errors instead of them being supressed. Was making debugging really hard.
* - pending user accounts will not be notified to the site_email.Kjartan Mannes2002-05-23
| | | | | | | | | | | | | - fixed access checks on the register form, do this before you enter the _save function. If registrations are disabled the register link will no longer show (again). - changed &#187 to &raquo, using the names of entities are better than the numbers. - fixed user information being set when account is registered (properly this time, really!) - reversed the if(!...) commit. - node_add specifies more defaults. - added link to blog entries from user page.
* - node security fixes.Kjartan Mannes2002-05-22
| | | | - fixing the UI to represent what actually happens when you are an admin.
* - fixing the last fixes.Kjartan Mannes2002-05-22
|
* Poll.module:Steven Wittens2002-05-21
| | | | Node links didn't always show up in the poll side-block, only when having voted. Fixed.
* - fixing spaces in url. Bug #192Kjartan Mannes2002-05-21
|
* The default form action (request_uri) didn't escape HTML entities (such as ↵Steven Wittens2002-05-21
| | | | &amp;)
* Poll.module:Steven Wittens2002-05-21
| | | | Cosmetical bugfix, "1 vote" instead of "1 votes" (using format_plural)
* Locale.module:Steven Wittens2002-05-20
| | | | Added a piece of code to insert common strings (currently weekdays and month-names) into the locale table. It's triggered whenever you visit the locale admin pages, but executes only once.
* - the comment control panel is now only shown when there are comments.Kjartan Mannes2002-05-20
|
* - tweaking the links. Too many of them.Kjartan Mannes2002-05-20
|
* - fixing perma links.Kjartan Mannes2002-05-20
|