aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-12 08:57:22 +1000
committerredmatrix <git@macgirvin.com>2016-05-12 08:57:22 +1000
commit1fb21b781f47a4e0f8931bd703b589398ecf18e6 (patch)
tree6be9ffcd0eeb0559b7355fe45de904d8f5925e2f /view
parent25df2080ead7301b5a26aeb7953065787c63d259 (diff)
parentd968fc51eab8b0fb259ecbeae517056b99554017 (diff)
downloadvolse-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')
-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();
}