summaryrefslogtreecommitdiff
path: root/app/layout
diff options
context:
space:
mode:
authorGravatar Patrick Crandol <patrick@crandol.com> 2018-10-28 20:28:30 -0400
committerGravatar Patrick Crandol <patrick@crandol.com> 2018-10-28 20:28:30 -0400
commitb790b160c4782405d3cec506a9775b3c4f1d8df1 (patch)
treecef9b32c4ddf40151898d2908ed5feae8f9bcf99 /app/layout
parent31e70e4342fbdf0a02e4dae83a5e6d2e998187c0 (diff)
Add ID's to buttons in configure-feed
Add ID's to be able to individually target buttons inside the configure feeds (Subscriptions Management & Import/Export) buttons.
Diffstat (limited to 'app/layout')
-rw-r--r--app/layout/aside_feed.phtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/layout/aside_feed.phtml b/app/layout/aside_feed.phtml
index ce029cfa0..7b1645ebd 100644
--- a/app/layout/aside_feed.phtml
+++ b/app/layout/aside_feed.phtml
@@ -12,8 +12,8 @@
<?php if (FreshRSS_Auth::hasAccess()) { ?>
<div class="stick configure-feeds no-mobile">
- <a class="btn btn-important" href="<?php echo _url('subscription', 'index'); ?>"><?php echo _t('index.menu.subscription'); ?></a>
- <a class="btn btn-important" href="<?php echo _url('importExport', 'index'); ?>"><?php echo _i('import'); ?></a>
+ <a id="btn-subscription" class="btn btn-important" href="<?php echo _url('subscription', 'index'); ?>"><?php echo _t('index.menu.subscription'); ?></a>
+ <a id="btn-importExport" class="btn btn-important" href="<?php echo _url('importExport', 'index'); ?>"><?php echo _i('import'); ?></a>
</div>
<?php } elseif (FreshRSS_Auth::accessNeedsLogin()) { ?>
<a href="<?php echo _url('index', 'about'); ?>"><?php echo _t('index.menu.about'); ?></a>