diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-07-02 17:09:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-07-02 17:09:09 +0000 |
commit | d017514eba70ea4041218b943f01721cfd6e9b64 (patch) | |
tree | 089028796d6091ce0ff335a9f29b3f538e82450f /modules/node/node.module | |
parent | 7997ebb9820f0fe6cd8220aefb9365d29c6ee426 (diff) | |
download | brdo-d017514eba70ea4041218b943f01721cfd6e9b64.tar.gz brdo-d017514eba70ea4041218b943f01721cfd6e9b64.tar.bz2 |
- Improvement: made it possible to translate the forum module. Patch #53 by Stefan.
- Improvement: some small changes to the user module to ease translation and to make things slightly more consistent. This should be a better alternative for patch #54.
- Improvement: increase the maxlength of the node title. This should fix bug #2018 and #2176.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index de4dc46be..a8e59ce53 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1064,7 +1064,7 @@ function node_form($edit, $error = NULL) { ** Add the default fields: */ $output .= "<div class=\"standard\">"; - $output .= form_textfield(t("Title"), "title", $edit->title, 60, 64, $error["title"]); + $output .= form_textfield(t("Title"), "title", $edit->title, 60, 128, $error["title"]); /* ** Add the node specific fields: |