By rbi on Saturday, 25 April 2020
Replies 8
Likes 0
Views 644
Votes 0
Hi,
I am setting the HEADER Content-Security-Policy with the 'unsafe-inline' for all types with the needed url exceptions.
I am not setting anything for jEvents. All works well except when in the frontend I pick the edit on an existing event and in the popup I select "Copy and edit event". Saving the instance of the copied event crashes.

Sequence
1) When I validate the "edit or a "Copy and edit event" first error in the chrome console is:
"Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self'"
The source points to the last statement "document.getElem...

function setupRepeats() {
hideEmptyJevTabs();
var freq = "NONE";
document.getElementById(freq).checked = true;
toggleFreq(freq, true);
var by = "jevbd";
document.getElementById(by).checked = true;
var by = "byday";
toggleWhichBy(by);
var cu = "cu_count";
document.getElementById(cu == "cu_until" ? "cuu" : "cuc").checked = true;

there is also an error in trying to load an image


2) When I edit the copy and then press the save button I get:
Error: 0
Call to a member function evdet_id() on null

and in the console I get the image I attach here.

An edit of an event works well when I save. It is the copy of an existing instance that is problematic when I save.

What is your suggestion ?

Thanks
Roland
Version 3.4.57 includes this change - did it help your situation?
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
The browser is being excessively fussy - if you change the window.setTimout to read

window.setTimeout(setupRepeats, 500);

it doesn't complain - I'll include this in the next release.

I'll also resolve the edit as copy issue - watch for a new release tomorrow.
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
p.s. Sorry - on closer inspection there is a problem remaining with calls to 'eval' - if you make the description field required then we have to call the editor's getValue function to know if there is any text in the WYSIWYG editor. Don't think we can do this in Joomla 3.9 without using eval.
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks
rbi
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Not sure I understand what you mean by "if you make the description field required"
rbi
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Sorry new release was delayed.


When you configure JEvents you can set certain fields as being 'required' i.e. not empty. That way you can force the event creator to add a description to an event. Getting the value of this in Joomla 3.9 requires a call to javascript from the editor - I'll see if we can do this via a closure or custom function
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,
Is this the awaited change ? : "Change settimeout call to pass reference to function instead of function string - was interpreted as a call to eval by content security policy settings"
Roland
rbi
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
It did, thanks a lot!
rbi
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post