summaryrefslogtreecommitdiffstats
path: root/apps/calendar/templates/part.choosecalendar.rowfields.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2011-09-13 22:42:56 +0200
committerBart Visscher <bartv@thisnet.nl>2011-09-14 23:36:22 +0200
commit68758f9b2c4000056fb97fb9002e9030b97b9932 (patch)
tree794f6dc0cf8d1f85fba60858376e4b8240a9580b /apps/calendar/templates/part.choosecalendar.rowfields.php
parent7c9f1007d5ce78b4c19f35f425467755f75ba5b6 (diff)
downloadnextcloud-server-68758f9b2c4000056fb97fb9002e9030b97b9932.tar.gz
nextcloud-server-68758f9b2c4000056fb97fb9002e9030b97b9932.zip
Rename calendar javascript functions into Calendar.UI namespace
Diffstat (limited to 'apps/calendar/templates/part.choosecalendar.rowfields.php')
-rw-r--r--apps/calendar/templates/part.choosecalendar.rowfields.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/templates/part.choosecalendar.rowfields.php b/apps/calendar/templates/part.choosecalendar.rowfields.php
index 9a202907cd8..ad5daf363f2 100644
--- a/apps/calendar/templates/part.choosecalendar.rowfields.php
+++ b/apps/calendar/templates/part.choosecalendar.rowfields.php
@@ -1,4 +1,4 @@
<?php
- echo "<td width=\"20px\"><input id=\"active_" . $_['calendar']["id"] . "\" type=\"checkbox\" onClick=\"Calendar.UI.Calender.activation(this, " . $_['calendar']["id"] . ")\"" . ($_['calendar']["active"] ? ' checked="checked"' : '') . "></td>";
+ echo "<td width=\"20px\"><input id=\"active_" . $_['calendar']["id"] . "\" type=\"checkbox\" onClick=\"Calendar.UI.Calendar.activation(this, " . $_['calendar']["id"] . ")\"" . ($_['calendar']["active"] ? ' checked="checked"' : '') . "></td>";
echo "<td><label for=\"active_" . $_['calendar']["id"] . "\">" . $_['calendar']["displayname"] . "</label></td>";
echo "<td width=\"20px\"><a href=\"#\" onclick=\"showcaldavurl('" . OC_User::getUser() . "', '" . $_['calendar']["uri"] . "');\" title=\"" . $l->t("CalDav Link") . "\" class=\"action\"><img class=\"svg action\" src=\"../../core/img/actions/public.svg\"></a></td><td width=\"20px\"><a href=\"export.php?calid=" . $_['calendar']["id"] . "\" title=\"" . $l->t("Download") . "\" class=\"action\"><img class=\"svg action\" src=\"../../core/img/actions/download.svg\"></a></td><td width=\"20px\"><a href=\"#\" title=\"" . $l->t("Edit") . "\" class=\"action\" onclick=\"Calendar.UI.Calendar.edit(this, " . $_['calendar']["id"] . ");\"><img class=\"svg action\" src=\"../../core/img/actions/rename.svg\"></a></td>";