diff options
author | redmatrix <git@macgirvin.com> | 2016-05-12 08:57:22 +1000 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-12 08:57:22 +1000 |
commit | 1fb21b781f47a4e0f8931bd703b589398ecf18e6 (patch) | |
tree | 6be9ffcd0eeb0559b7355fe45de904d8f5925e2f /view/tpl | |
parent | 25df2080ead7301b5a26aeb7953065787c63d259 (diff) | |
parent | d968fc51eab8b0fb259ecbeae517056b99554017 (diff) | |
download | volse-hubzilla-1fb21b781f47a4e0f8931bd703b589398ecf18e6.tar.gz volse-hubzilla-1fb21b781f47a4e0f8931bd703b589398ecf18e6.tar.bz2 volse-hubzilla-1fb21b781f47a4e0f8931bd703b589398ecf18e6.zip |
Merge pull request #376 from anaqreon/plugin-repo
Check if target directories are writable when adding, updating, or removing plugin repos
Diffstat (limited to 'view/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(); } |