summaryrefslogtreecommitdiff
path: root/modules/aggregator.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-06-06 20:33:25 +0000
committerDries Buytaert <dries@buytaert.net>2001-06-06 20:33:25 +0000
commite521e5b6c21f16568c541a025bcecc9bf9ba36bc (patch)
treeab6c134ca31723abe1d527204802dae61b10ea2a /modules/aggregator.module
parent67958d3d41118ac866009383da6679e53080b01a (diff)
downloadbrdo-e521e5b6c21f16568c541a025bcecc9bf9ba36bc.tar.gz
brdo-e521e5b6c21f16568c541a025bcecc9bf9ba36bc.tar.bz2
- Increased the maximum length of the 'link'-textfield.
Diffstat (limited to 'modules/aggregator.module')
-rw-r--r--modules/aggregator.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator.module b/modules/aggregator.module
index 01eb71b8b..355b77691 100644
--- a/modules/aggregator.module
+++ b/modules/aggregator.module
@@ -136,7 +136,7 @@ function import_form_feed($edit = array()) {
$period = array(900 => format_interval(900), 1800 => format_interval(1800), 3600 => format_interval(3600), 7200 => format_interval(7200), 10800 => format_interval(10800), 21600 => format_interval(21600), 32400 => format_interval(32400), 43200 => format_interval(43200), 64800 => format_interval(64800), 86400 => format_interval(86400), 172800 => format_interval(172800), 259200 => format_interval(259200), 604800 => format_interval(604800), 1209600 => format_interval(1209600), 2419200 => format_interval(2419200));
$form .= form_textfield("Title", "title", $edit[title], 50, 64, "The name of the feed; typically the name of the website you syndicate content from.");
- $form .= form_textfield("Link", "link", $edit[link], 50, 64, "The fully-qualified URL of the feed.");
+ $form .= form_textfield("Link", "link", $edit[link], 50, 128, "The fully-qualified URL of the feed.");
$form .= form_textfield("Attributes", "attribute", $edit[attribute], 50, 128, "A comma-seperated list of keywords describing the feed.");
$form .= form_select("Update interval", "refresh", $edit[refresh], $period, "The refresh interval indicating how often you want to update this feed. Requires crontab.");
$form .= form_select("Expiration time", "uncache", $edit[uncache], $period, "The time cached items should be kept. Older items will be automatically discarded. Requires crontab.");