diff --git a/ext/cron_uploader/main.php b/ext/cron_uploader/main.php
index 12db26b8..8bf75c2b 100644
--- a/ext/cron_uploader/main.php
+++ b/ext/cron_uploader/main.php
@@ -147,6 +147,7 @@ class CronUploader extends Extension {
$this->root_dir = $this->set_dir();
$cron_url = make_http(make_link("/cron_upload/" . $config->get_string('cron_uploader_key', 'invalid key' )));
$cron_cmd = "wget $cron_url";
+ $documentation_link = make_http(make_link("cron_upload"));
$sb = new SetupBlock ( "Cron Uploader" );
$sb->add_label ( "Settings
" );
@@ -155,7 +156,7 @@ class CronUploader extends Extension {
$sb->add_label ("
Cron Command:
Create a cron job with the command above.
- Read the documentation if you're not sure what to do.");
+ Read the documentation if you're not sure what to do.");
$event->panel->add_block ( $sb );
}