diff options
author | Pascal Chevrel <pascal@chevrel.org> | 2012-03-09 16:30:22 +0100 |
---|---|---|
committer | Pascal Chevrel <pascal@chevrel.org> | 2012-03-09 16:30:22 +0100 |
commit | 94ac294fd91be3e5cbb2a78becfa41216848367b (patch) | |
tree | 61526ea2f7fe855314ddbfd440342f806350c0fb /admin | |
parent | 69bf1b314b84c979c220e26b931e722712b5d531 (diff) | |
download | planet-94ac294fd91be3e5cbb2a78becfa41216848367b.tar planet-94ac294fd91be3e5cbb2a78becfa41216848367b.tar.gz planet-94ac294fd91be3e5cbb2a78becfa41216848367b.tar.bz2 planet-94ac294fd91be3e5cbb2a78becfa41216848367b.tar.xz planet-94ac294fd91be3e5cbb2a78becfa41216848367b.zip |
html5: admin page, make the http:// mention in the add feed field be a placeholder hinding at the type of URL, not real text. When you copy/paste a feed, you already have the http:// part
Diffstat (limited to 'admin')
-rwxr-xr-x | admin/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/index.php b/admin/index.php index 1a43020..a438f27 100755 --- a/admin/index.php +++ b/admin/index.php @@ -75,7 +75,7 @@ ob_start(); <form action="subscriptions.php" method="post" id="feedimport">
<fieldset>
<label for="url">Link:</label>
- <input type="text" class="text" name="url" id="url" value="http://" class="text" size="50" />
+ <input type="text" class="text" name="url" id="url" placeholder="http://" class="text" size="50" />
<input type="submit" class="submit add" name="add" value="Add feed" />
</fieldset>
<p class="help">Accepted formats are RSS and ATOM. If the link is not a feed, moonmoon will try to autodiscover the feed.</p>
|