aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/admin_plugins.tpl
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-05-11 20:08:54 -0400
committerAndrew Manning <tamanning@zoho.com>2016-05-11 20:08:54 -0400
commit913d07a4a7d9494e0617baa048be4a5857792e44 (patch)
treea8c31969e0fa7807f1e6b40e7c8a30985f99a6b3 /view/tpl/admin_plugins.tpl
parentb40d8070f35695008d122a685f1dfc9cc32adfbe (diff)
parent1fb21b781f47a4e0f8931bd703b589398ecf18e6 (diff)
downloadvolse-hubzilla-913d07a4a7d9494e0617baa048be4a5857792e44.tar.gz
volse-hubzilla-913d07a4a7d9494e0617baa048be4a5857792e44.tar.bz2
volse-hubzilla-913d07a4a7d9494e0617baa048be4a5857792e44.zip
Merge remote-tracking branch 'upstream/dev' into chat-notify
Diffstat (limited to 'view/tpl/admin_plugins.tpl')
-rwxr-xr-xview/tpl/admin_plugins.tpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/admin_plugins.tpl b/view/tpl/admin_plugins.tpl
index 186cb052d..f21a3057e 100755
--- a/view/tpl/admin_plugins.tpl
+++ b/view/tpl/admin_plugins.tpl
@@ -15,7 +15,7 @@
</div>
<div class="clear"></div>
<div class="section-content-info-wrapper">
- <h3>Installed Addon Repositories</h3>
+ <h3>Installed Plugin Repositories</h3>
{{foreach $addonrepos as $repo}}
<!-- <div class="section-content-tools-wrapper"> -->
<div style="margin-left: 30%; margin-right: 30%;">
@@ -123,7 +123,7 @@
"/admin/plugins/updaterepo", {repoName: repoName},
function(response) {
if (response.success) {
- window.console.log('Addon repo'+repoName+'successfully updated :' + response['message']);
+ window.console.log('Addon repo '+repoName+' successfully updated :' + response['message']);
alert('Addon repo updated.');
} else {
window.console.log('Error updating repo :' + response['message']);
@@ -146,7 +146,7 @@
"/admin/plugins/removerepo", {repoName: repoName},
function(response) {
if (response.success) {
- window.console.log('Addon repo'+repoName+'successfully removed :' + response['message']);
+ window.console.log('Addon repo '+repoName+' successfully removed :' + response['message']);
if(confirm('Repo deleted. Click OK to refresh page.')) {
location.reload();
}