| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
|
|
|
|
|
| |
Gerhard.
- Improvement: CSS improvements. Patch #40 by Al.
(TODO: we might be able to simplify admin.css now both drupal.css and
admin.css are included to render administration pages. Tags like "body"
and friends can probably be inherited.)
|
| |
|
|
|
|
|
|
|
|
| |
the fix was somewhat simpler. Fixes bug #2003.
- Bugfix: fixed problem with voting on certain poll pages. Patch #37 by Al.
- Improvement: removed stupid descriptions from profile module.
|
|
|
|
| |
by Slavica. Fixes bug #1730.
|
|
|
|
|
|
|
|
|
|
|
|
| |
#33 by Al.
- Bugfix: fixed translation problems in the user module and the block module. Patch by Stefan.
- Improvement: made it impossible to delete user role #1 and #2. Patch #38 by Al.
- Improvement: fixed the "Allowed HTML tag" issues. Makes for better code and improved usability. Patch #35 by Al.
NOTE: as soon the compose tips make their way into CVS, most of this code can be removed.
|
|
|
|
| |
translated. Patch by Stefan.
|
| |
|
|
|
|
| |
date_format_long value rather than a hardcoded one.
|
|
|
|
| |
by Keith.
|
|
|
|
|
| |
Modified patch from Al; used 'user_mail_approval_subject' instead of
'user_mail_welcome_approval_subj'. Patch #11 by Al. Fixes bug #1976.
|
|
|
|
| |
help doesn't have a huge horizontal scrollbar. Patch #13 by Al.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Bugfix: block patch fix. Patch by Gerhard.
- Bugfix: fixed broken URL in ping. Patch by Gerhard.
(This should fix the problems shown on http://www.blo.gs/info.php?id=1515.)
- Improvement: added better password generator. Patch #1 by Al. Fixes bug
#1935.
- Improvement: performance improvement to the blog module. Patch by Marco.
|
|
|
|
|
|
| |
correctly when the
user logged using the user block from within a subdirectory. Patch by Ulf Rompe.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
prefixed with GO for some obscure reason. Patch by Kjartan.
- Bugfix: fixed the defaults for blocks in database.mssql so the NOT NULL fields get values. Patch by Kjartan.
- Bugfix: changed check_form() to use htmlspecialchars() instead of drupal_specialchars() as this caused Drupal to emit incorrect form items in presence of quotes. Example:
<input type="submit" class="form-submit" name="op" value="Submit "top nodes" block changes" />
IMO, drupal_specialchars() is better called xmlspecialchars() to avoid confusion.
- Bugfix: when an anonymous user visits a site, they shouldn't see any content (except the login block, if it is enabled) unless they have the "access content" permissions. Patch by Matt Westgate.
- Improvement: improved the error checking and the error messages in the profile module. Updated the code to match the Drupal coding conventions. Modified patch from Matt Westgate.
- Improvement: don't generate the <base href=""> tag in the base theme; it is already emitted by theme_head(). Patch by Kristjan.
- Improvement: don't execute any SQL queries when checking the permissions of user #1. Patch by Kjartan.
- Improvement: made a scalable layout form that works in IE and that behaves better with narrow themes. Part of patch #51 by Al.
- Improvement: removed some redundant print statements from the comment module. Modified patch from Craig Courtney.
|
|
|
|
|
|
| |
- Bugfix: in the user_admin_edit() function, the data array returned from the callback modules was not being merged into the edit array.
- Bugfix: added enctype="multipart/form-data" to the form tag so that we can update things like the avatar image in the admin interface.
|
|
|
|
| |
Al. Fixes bug #1828.
|
|
|
|
| |
redirected you to an incorrect page. Patch by Moshe.
|
| |
|
|
|
|
| |
- Made the statistics module use referer_uri() for security's sake.
|
|
|
|
| |
properly. You couldn't use a username or passwords that had quotes.
|
|
|
|
| |
Gerhard's patch was not 100% correct and I found a better alternative.
|
|
|
|
|
|
|
| |
hard-coded form elements. Modified patch by Kristjan.
I added some CSS to drupal.css to center the text and ordered the
list of CSS tags alphabetically.
|
| |
|
| |
|
|
|
|
|
|
| |
components such as lists, form items, removes an ugly hack from the
archive module and should fix the poll problem (although it doesn't
Opera/Konqueror).
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
no permissions set.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
| |
- Changed all occurences of '%d' to %d as suggested on the mailing list.
|
| |
|
|
|
|
|
| |
theme_node_list(), and theme_menu_list(). This will fix the excessive
gap between lists and avoids generating empty <b></b> constructs.
|
|
|
|
| |
standard themes could be updated to demonstrate the possibilities.
|
|
|
|
| |
request #1109.
|
| |
|
|
|
|
| |
- Added a 'form_radio' function.
|
|
|
|
|
| |
- case t("whatever");
+ case t("whatever"):
|
| |
|
|
|
|
| |
in common.inc. Modified patch from Gerhard.
|
|
|
|
| |
bug #185217. Patch by Gerhard.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The syntax for db_query_range() was enhanced so it matches db_query(). So
you may pass extra arguments of the SQL statement which are checked via
check_query() and then substituted into the SQL statement. After these
optional arguments, you always pass $from and $count parameters which
define your range. Most often, the $from is 0 and the count is the max
number of records you want returned. Patch by Moshe.
- The pager_query() function for PEAR was enhanced so that it adds proper
GROUP BY statement counting the number of records to be paged. Patch by
James Arthur.
- MSSQL database scheme by Moshe.
|
|
|
|
| |
- Removed extraneous %uri's.
|
|
|
|
|
|
| |
- Fixed broken queries: use 'AND' instead of '&&'. Reported by Neil.
- Fixed broken URLs in e-mails. Reported by Stefaan.
|