diff options
| author | 2015-11-02 21:11:31 +0100 | |
|---|---|---|
| committer | 2015-11-02 21:14:13 +0100 | |
| commit | 697817eebf754c2a05c7b4c88df1f13dbd0179da (patch) | |
| tree | 84ba0bf1bbaaae9f822efe801e4606191864ec74 /app/views | |
| parent | bb0556543d3d5d54832ea6d81372587b88062a5b (diff) | |
Make auto-update server URL alterable
See https://github.com/FreshRSS/FreshRSS/issues/1019
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/configure/system.phtml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/views/configure/system.phtml b/app/views/configure/system.phtml index 9406c34d6..4af669eb0 100644 --- a/app/views/configure/system.phtml +++ b/app/views/configure/system.phtml @@ -9,7 +9,14 @@ <div class="form-group"> <label class="group-name" for="instance-name"><?php echo _t('admin.system.instance-name'); ?></label> <div class="group-controls"> - <input type="text" id="max-feeds" name="instance-name" value="<?php echo FreshRSS_Context::$system_conf->title; ?>" min="1" data-leave-validation="<?php echo FreshRSS_Context::$system_conf->title; ?>"/> + <input type="text" class="extend" id="instance-name" name="instance-name" value="<?php echo FreshRSS_Context::$system_conf->title; ?>" data-leave-validation="<?php echo FreshRSS_Context::$system_conf->title; ?>"/> + </div> + </div> + + <div class="form-group"> + <label class="group-name" for="auto-update-url"><?php echo _t('admin.system.auto-update-url'); ?></label> + <div class="group-controls"> + <input type="text" class="extend" id="auto-update-url" name="auto-update-url" value="<?php echo FreshRSS_Context::$system_conf->auto_update_url; ?>" data-leave-validation="<?php echo FreshRSS_Context::$system_conf->auto_update_url; ?>"/> </div> </div> |
