- May 31, 2002
-
-
Dries Buytaert authored
- Added missing translations and the like.
-
Dries Buytaert authored
-
Dries Buytaert authored
- Added missing translations (including the one Marco spotted).
-
Kjartan Mannes authored
-
- May 30, 2002
-
-
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.
-
- May 29, 2002
-
-
Dries Buytaert authored
- Fixed a drupal_goto() as identified by Marco.
-
Kjartan Mannes authored
keep the blocks from ruining theme layouts.
-
Kjartan Mannes authored
-
Kjartan Mannes authored
- reverting a taxonomy patch that added $context checking to node/comments.
-
Kjartan Mannes authored
- added access checks to blog block.
-
- May 26, 2002
-
-
Dries Buytaert authored
- Change to use the proper db_query syntax. Patch by Marco.
-
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.
-
Dries Buytaert authored
- Bugfix: just before submitting a node, one could change the content of 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."
-
Dries Buytaert authored
- Bugfix: found a bug with the 'create poll' title attribute. It was getting added to the <a> tag as '0="title" 1="Add a new poll."'. Patch by Revar.
-
- May 25, 2002
-
-
Dries Buytaert authored
- Bugfix. When a theme does no longer exist on disk, it should not be 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 ... ?
-
- May 24, 2002
-
-
Dries Buytaert authored
- Now all themes use the new taxonomy stuff, we can remove the depricated function node_index() - it was an empty function.
-
Dries Buytaert authored
- Removed a "nowrap" attribute to make theme Marvin look better on IE6. (Suggested by UnConed.) - Made theme Marvin support the taxonomy module.
-
Kjartan Mannes authored
- added some more help text to page.module.
-
- May 23, 2002
-
-
Kjartan Mannes authored
- Included modules will now cause parse errors instead of them being supressed. Was making debugging really hard.
-
Kjartan Mannes authored
- 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 » to », 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.
-
- May 22, 2002
-
-
Kjartan Mannes authored
- fixing the UI to represent what actually happens when you are an admin.
-
Kjartan Mannes authored
-
- May 21, 2002
-
-
Steven Wittens authored
Node links didn't always show up in the poll side-block, only when having voted. Fixed.
-
Kjartan Mannes authored
-
Steven Wittens authored
-
Steven Wittens authored
Cosmetical bugfix, "1 vote" instead of "1 votes" (using format_plural)
-
- May 20, 2002
-
-
Steven Wittens authored
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.
-
Kjartan Mannes authored
-
Kjartan Mannes authored
-
Kjartan Mannes authored
-
Steven Wittens authored
-
Kjartan Mannes authored
- changed the meta -> taxo to append terms instead of overwriting. - added more warnings to file.
-
Kjartan Mannes authored
-
Kjartan Mannes authored
-
Steven Wittens authored
-
Dries Buytaert authored
diff -r1.69 user.module 869c869 < $body = strtr(variable_get("user_mail_pass_body", t("%username,\n\nHere is your new password for %site. You may now login to %uri". drupal_url(array("mod" => "user", "op" => "login"), "module") ." using the following username and password:\n\nusername: %username\npassword: %password\n\nAfter logging in, you may wish to change your password at %uri". drupal_url(array("mod" => "user", "op" => "edit"), "module") ."\n\nYour new %site membership also enables to you to login to other Drupal powered web sites (e.g. http://www.drop.org) without registering. Just use the following Drupal ID and password:\n\nDrupal ID: %username@%uri_brief\npassword: %password\n\n\n-- %site team")), $variables); --- > $body = strtr(variable_get("user_mail_pass_body", t("%username,\n\nHere is your new password for %site. You may now login to %uri". drupal_url(array("mod" => "user", "op" => "login"), "module") ." using the following username and password:\n\nusername: %username\npassword: %password\n\nAfter logging in, you may wish to change your password at %uri". drupal_url(array("mod" => "user", "op" => "edit"), "module") .".\n\nYour new %site membership also enables you to login to other Drupal powered web sites (e.g. http://www.drop.org/) without registering. Just use the following Drupal ID and password:\n\nDrupal ID: %username@%uri_brief\npassword: %password\n\n\n-- %site team")), $variables);
-
Kjartan Mannes authored
-
Dries Buytaert authored
- Ran the code through 'scripts/code-clean.sh': removed trailing whitespace (and possibly tabs).
-
Dries Buytaert authored
- Bugfix: the tracker module was using an incorrect time interval to show recent/new comments. Patch by Gerhard.
-
Dries Buytaert authored
diff -r1.46 CHANGELOG 5c5 < - added weblogs.module. --- > - added weblogs.module. 36a37 > - improved comment module to mark new comments. 37a39 > - added an update script that lets you upgrade from previous releases or on a day to day basis when using the development tree. 40c42 < * added proper indexing. --- > * added indexing. 44c46 < * added support for session ids in URLs instead of cookies. --- > * added support for session IDs in URLs instead of cookies. 48c5 < * added url abstraction for links. --- > * added URL abstraction for links.
-