summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornatrak <>2001-07-30 09:19:59 +0000
committernatrak <>2001-07-30 09:19:59 +0000
commit0ee2e5523c47617639c153b789ca65ac60f2f99c (patch)
tree0e3ab80664f8a64c995c8a239f87267ab0252abc
parent647dcdb7fccb70035c6d7cb447b7820e674042b0 (diff)
downloadbrdo-0ee2e5523c47617639c153b789ca65ac60f2f99c.tar.gz
brdo-0ee2e5523c47617639c153b789ca65ac60f2f99c.tar.bz2
cloud.module
- fixed the maxlengths as reported by Lars Gregori. import.module - modified the titles as suggsted by Julian Bond.
-rw-r--r--modules/cloud.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/cloud.module b/modules/cloud.module
index e2aece7aa..d429ce637 100644
--- a/modules/cloud.module
+++ b/modules/cloud.module
@@ -73,9 +73,9 @@ function cloud_update($site) {
function cloud_form($edit = array()) {
global $REQUEST_URI;
- $form .= form_textfield("Site name", "name", $edit["name"], 50, 64, "The name of the website you want to monitor for updates.");
- $form .= form_textfield("Site URL", "link", $edit["link"], 50, 64, "The URL of the website you want to monitor for updates.");
- $form .= form_textfield("URL to monitor", "feed", $edit["feed"], 50, 64, "The URL of the page you want to monitor for updates. Likely to be same as the site's URL but useful to monitor framed pages and more accurate when pointed to a XML/RSS/RDF feed.");
+ $form .= form_textfield("Site name", "name", $edit["name"], 50, 128, "The name of the website you want to monitor for updates.");
+ $form .= form_textfield("Site URL", "link", $edit["link"], 50, 255, "The URL of the website you want to monitor for updates.");
+ $form .= form_textfield("URL to monitor", "feed", $edit["feed"], 50, 255, "The URL of the page you want to monitor for updates. Likely to be same as the site's URL but useful to monitor framed pages and more accurate when pointed to a XML/RSS/RDF feed.");
$form .= form_submit("Submit");