| Commit message (Collapse) | Author | Age |
|
|
|
| |
easier. Also changed the <? tag to <?php in some cases.
|
|
|
|
| |
easier. Also changed the <? tag to <?php in some cases.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
file
by setting them in a $conf variable.
This will let you host several domains off the same Drupal installation with
the same databases with minor differences in settings.
Note: the values can not be changed by users in a GET or POST string.
|
|
|
|
|
|
|
|
|
|
|
| |
file
by setting them in a $conf variable.
This will let you host several domains off the same Drupal installation with
the same databases with minor differences in settings.
Note: the values can not be changed by users in a GET or POST string.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
'updates/3.00-to.x.xx.mysql' for the required MySQL updates.
- Renamed some "author" fields to "uid" fields for sake of consistency.
- Fixed the coding style of some PHP files.
- Fixed the moderation queue (fairly untested though).
- Re-introduced the temporary SQL table in _node_get().
- Added a missing 'auto_increment' to 'updates/3.00-to-x.xx.mysql'.
|
| |
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
functions to store data in the theme (patch by Mike Krus).
|
|
|
|
| |
(moderation/comment related)
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
- fixed bug in node_page()
- fixed bug in db_result()
- fixed rss glitch
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
| |
it in your custom themes
- moved 'theme_account()' to the base theme as '$theme->user()' so that it
can be themed.
|
|
|
|
|
|
|
| |
(There is room for improvement so let's go from these ... and build
on them.)
- Removed some $status's by calls to node_status().
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
which will append the session ID to the uri 'foo' when PHP is compiled
with '--enable-transe-sid'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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)!
|
| |
|
|
|
|
|
|
|
| |
+ 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.
|
|
|
|
| |
of comments and nodes.
|
|
|
|
| |
http://groups.yahoo.com/group/xml-rpc/message/3626
|
| |
|
|
|
|
|
| |
'dumped' first."
(patch by Alex)
|
| |
|
|
|
|
|
|
|
| |
comments now.
- Improved the comment system so that anonymous users can change the
comment settings.
|
|
|
|
| |
of the user. (Should stop using * in SQL queries :-)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
calls can implement the new 'xmlrpc' hook.
Example:
function mymodule_xmlrpc() {
return array("drupal.myfunction" => array("function" => "mymodule_myfunction"));
}
|
| |
|
|
|
|
| |
Keith.
|
|
|
|
| |
+ added a form_password() function
|
| |
|
|
|
|
| |
- Fixed bug reported by Remco.
|
|
|
|
| |
matching configuration file is found.
|
| |
|
|
|
|
|
|
| |
list.
- Fixed the export function in book.module (patch my Julian).
- Fixed the comment alignment (comments got truncated).
|
|
|
|
|
|
| |
- search is now default.
- search remembers your settings.
- save will dump you back to your last search.
|
|
|
|
| |
+ applied Julian's conf_init() patch
|
|
|
|
|
|
|
|
|
|
|
| |
- format_username() now takes a second optional parameter which gives the
real name of the user.
Rest
- updated the calls to format_username() where appropriate to show the name
of the user instead of the account id. Clicking on a name will still give you
the account info etc. If you find a place where the real name is not shown
let me know.
|
|
|
|
|
|
|
|
|
|
|
| |
- format_username() now takes a second optional parameter which gives the
real name of the user.
Rest
- updated the calls to format_username() where appropriate to show the name
of the user instead of the account id. Clicking on a name will still give you
the account info etc. If you find a place where the real name is not shown
let me know.
|
|
|
|
|
| |
system.module
- made the words used in passwords configurable thru the admin interface.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- removed comment_controls().
- modified comment_render() to use $theme->comment_controls().
theme.inc
- added BaseTheme->comment_controls().
locale.module
- can now search for status independant of language.
- string is now a regular expression. For wildcard searches do .*text.*.
- can search in modules + pages, all modules or a specific module.
account.php
- fixed viewing other accounts info would show the active users name in the
real name field.
- now shows users recent contributions and comments (if the user has access to
them).
|