Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/YOURLS/YOURLS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorBestNa.me Labs <info@bestna.me>2016-03-10 23:51:57 +0300
committerBestNa.me Labs <info@bestna.me>2016-03-10 23:51:57 +0300
commit04d81c1996fc1e8e0daaa034ab5a6592f83d5208 (patch)
tree3717936234f81744f0fb92f7f960e6eb5d76f3de /admin
parentbddabc4548535024281b923b64d1789b51d1b208 (diff)
Additional id for tag containing $total_clicks
Granted the `<strong>` tag containing the number of total clicks its own id (in admin/index.php) (the element should be prominent enough to deserve it).
Diffstat (limited to 'admin')
-rw-r--r--admin/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/index.php b/admin/index.php
index a7f61510..8029bb45 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -286,7 +286,7 @@ if ( !$is_bookmark ) { ?>
echo ", " . sprintf( yourls_n( 'counting <strong>1</strong> click', 'counting <strong>%s</strong> clicks', $total_items_clicks ), yourls_number_format_i18n( $total_items_clicks ) );
?>.</p>
<?php } ?>
-<p><?php printf( yourls__( 'Overall, tracking <strong class="increment">%1$s</strong> links, <strong>%2$s</strong> clicks, and counting!' ), yourls_number_format_i18n( $total_urls ), yourls_number_format_i18n( $total_clicks ) ); ?></p>
+<p><?php printf( yourls__( 'Overall, tracking <strong class="increment">%1$s</strong> links, <strong id="total_clicks">%2$s</strong> clicks, and counting!' ), yourls_number_format_i18n( $total_urls ), yourls_number_format_i18n( $total_clicks ) ); ?></p>
<?php
yourls_do_action( 'admin_page_before_form' );