forked from extern/egroupware
Merge pull request #10 from WAMozart/master
* added share-link feature to filemanager context menu
This commit is contained in:
parent
3870d9803e
commit
ad81c7553d
@ -62,11 +62,20 @@ var et2_radiobox = (function(){ "use strict"; return et2_inputWidget.extend(
|
||||
|
||||
this.createInputWidget();
|
||||
},
|
||||
transformAttributes: function(_attrs) {
|
||||
this._super.apply(this, arguments);
|
||||
var readonly = this.getArrayMgr('readonlys').getEntry(this.id);
|
||||
if(readonly && readonly[_attrs.set_value])
|
||||
{
|
||||
_attrs.readonly = readonly[_attrs.set_value];
|
||||
}
|
||||
},
|
||||
|
||||
createInputWidget: function() {
|
||||
this.input = jQuery(document.createElement("input"))
|
||||
.val(this.options.set_value)
|
||||
.attr("type", "radio");
|
||||
.attr("type", "radio")
|
||||
.attr("disabled", this.options.readonly);
|
||||
|
||||
this.input.addClass("et2_radiobox");
|
||||
|
||||
|
@ -450,7 +450,8 @@ class calendar_uiforms extends calendar_ui
|
||||
// Expand mailing lists
|
||||
if($type == 'l')
|
||||
{
|
||||
foreach($this->bo->enum_mailing_list($participant) as $contact)
|
||||
// Ignore ACL here, allow inviting anyone in the list
|
||||
foreach($this->bo->enum_mailing_list($participant, true) as $contact)
|
||||
{
|
||||
// Mailing lists can contain users, so allow for that possibility
|
||||
$_type = is_numeric($contact) ? '' : $contact[0];
|
||||
|
Loading…
Reference in New Issue
Block a user