diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-05-07 20:22:55 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-05-07 21:47:14 +0200 |
commit | 4dbc2093c680bebaa42f230937be88a58984c5bd (patch) | |
tree | f0d51daac5376fadab5d8f1147926842485af836 /apps/calendar/templates/share.dropdown.php | |
parent | 9b5e0bebefd6c30c819d9830e79f3c07f0231d42 (diff) | |
download | nextcloud-server-4dbc2093c680bebaa42f230937be88a58984c5bd.tar.gz nextcloud-server-4dbc2093c680bebaa42f230937be88a58984c5bd.zip |
Create a function for linking to remote.php
Diffstat (limited to 'apps/calendar/templates/share.dropdown.php')
-rwxr-xr-x | apps/calendar/templates/share.dropdown.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/calendar/templates/share.dropdown.php b/apps/calendar/templates/share.dropdown.php index 0796a880f1f..356a8d4fab1 100755 --- a/apps/calendar/templates/share.dropdown.php +++ b/apps/calendar/templates/share.dropdown.php @@ -73,5 +73,5 @@ echo OCP\html_select_options($allgroups, array()); </ul> <div id="public"> <input type="checkbox" id="publish" <?php echo ($public['share'])?'checked="checked"':'' ?>><label for="publish"><?php echo $l->t('make public'); ?></label><br> - <input type="text" id="public_token" value="<?php echo OCP\Util::linkToAbsolute('', 'public.php?service=calendar&t=' . $public['share'], null, true) ; ?>" onmouseover="$('#public_token').select();" style="<?php echo (!$public['share'])?'display:none':'' ?>"> -</div>
\ No newline at end of file + <input type="text" id="public_token" value="<?php echo OCP\Util::linkToAbsolute('', 'public.php').'?service=calendar&t=' . $public['share'] ?>" onmouseover="$('#public_token').select();" style="<?php echo (!$public['share'])?'display:none':'' ?>"> +</div> |