diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/application/controllers/file.php | 1 | ||||
-rw-r--r-- | system/application/views/file/upload_form.php | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/system/application/controllers/file.php b/system/application/controllers/file.php index 7e8b88dbf..18e322f97 100644 --- a/system/application/controllers/file.php +++ b/system/application/controllers/file.php @@ -56,6 +56,7 @@ class File extends Controller { $data['max_upload_size'] = $this->config->item('upload_max_size'); $data['client_link'] = base_url().'data/client/fb-'.$this->var->latest_client.'.tar.gz'; $data['client_link_deb'] = base_url().'data/client/deb/'; + $data['client_link_slackware'] = base_url().'data/client/slackware/'; $this->load->view('file/header', $data); $this->load->view('file/upload_form', $data); diff --git a/system/application/views/file/upload_form.php b/system/application/views/file/upload_form.php index 4a90d2fbe..ef424b496 100644 --- a/system/application/views/file/upload_form.php +++ b/system/application/views/file/upload_form.php @@ -35,7 +35,8 @@ machine paste.xinu.at password my_secret_password <p>If you want to you can use this script to upload files, paste text or delete your uploads:<br /> <a href="<?php echo $client_link; ?>"><?php echo $client_link; ?></a></p> <p>Arch Linux users: pacman -S fb-client<br /> -Debian users: <a href="<?php echo $client_link_deb; ?>"><?php echo $client_link_deb; ?></a></p> +Debian users: <a href="<?php echo $client_link_deb; ?>"><?php echo $client_link_deb; ?></a><br /> +Slackware users: <a href="<?php echo $client_link_slackware; ?>"><?php echo $client_link_slackware; ?></a></p> <br /> <p>If you experience any problems feel free to <a href="http://bluewind.at/?id=1">contact me</a>.</p> |