Quote:
Originally Posted by mikkle
I can confirm this (at least when using Firefox).
I successfully patched the by replacing the outer single-quotes with double-qoutes in admincp/mgc_cb_evo.php :
Line 45:
Code:
if(confirm('<? echo $vbphrase['mgc_cb_evo_are_you_sure_to_delete']; ?>'))
changed to:
Code:
if(confirm("<? echo $vbphrase['mgc_cb_evo_are_you_sure_to_delete']; ?>"))
and Line 1313:
Code:
if(confirm("<? echo $vbphrase['mgc_cb_evo_are_you_sure_to_delete']; ?>))
changed to:
Code:
if(confirm("<? echo $vbphrase['mgc_cb_evo_are_you_sure_to_delete']; ?>"))
:O) Mikkle
|
Cool thanks for the fix
Not being able to reproduce it was a bit of a problem to fix it
Included in next release.