diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-11 05:53:23 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-11 05:53:23 -0400 |
commit | c7698e4dc388b7d9a9db368672cb057c1d4d3a01 (patch) | |
tree | 3dedd29d33f9623053727554ca99f0526fdd9d85 /view/tpl/admin_plugins.tpl | |
parent | 40e3d37a723f28a8957f3a844f9470c274c330e9 (diff) | |
download | volse-hubzilla-c7698e4dc388b7d9a9db368672cb057c1d4d3a01.tar.gz volse-hubzilla-c7698e4dc388b7d9a9db368672cb057c1d4d3a01.tar.bz2 volse-hubzilla-c7698e4dc388b7d9a9db368672cb057c1d4d3a01.zip |
Check if target directories are writable when adding, updating, or removing plugin repos
Diffstat (limited to 'view/tpl/admin_plugins.tpl')
-rwxr-xr-x | view/tpl/admin_plugins.tpl | 6 |
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(); } |