no need to switch on CSP policy unsafe-inline, unless we use method=ckeditor_return, as we are ported to eT2

This commit is contained in:
Ralf Becker 2014-05-14 08:15:42 +00:00
parent 6c696a1db0
commit 3f5f0ed81b

View File

@ -46,8 +46,6 @@ class filemanager_select
*/
function __construct()
{
// tell framework felamimail needs eval and inline javascript :(
egw_framework::csp_script_src_attrs(array('unsafe-eval', 'unsafe-inline'));
// strip slashes from _GET parameters, if someone still has magic_quotes_gpc on
if (get_magic_quotes_gpc() && $_GET)
{
@ -147,7 +145,7 @@ class filemanager_select
$content['name'] = egw_vfs::encodePathComponent($content['file_upload']['name']);
$to_path = egw_vfs::concat($content['path'],$content['name']);
$copy_result = (egw_vfs::is_writable($content['path']) || egw_vfs::is_writable($to)) &&
$copy_result = (egw_vfs::is_writable($content['path']) || egw_vfs::is_writable($to_path)) &&
copy($content['file_upload']['tmp_name'],egw_vfs::PREFIX.$to_path);
}
@ -247,7 +245,6 @@ class filemanager_select
$content['path'] = filemanager_ui::get_home_dir();
}
$tpl = new etemplate_new('filemanager.select');
$et2 = class_exists('etemplate_widget', false) && is_a($tpl, 'etemplate_widget');
if ($favorites_flag)
{
@ -255,7 +252,7 @@ class filemanager_select
$files = array();
$favorites = egw_favorites::get_favorites('filemanager');
$n = 0;
foreach($favorites as $f_id => $favorite)
foreach($favorites as $favorite)
{
$path = $favorite['state']['path'];
// Just directories
@ -335,6 +332,11 @@ class filemanager_select
$preserve['ckeditor'] = $content['ckeditor'];
}
// tell framework we need inline javascript for ckeditor_return
if ($content['method'] == 'ckeditor_return')
{
egw_framework::csp_script_src_attrs('unsafe-inline');
}
$tpl->exec('filemanager.filemanager_select.select',$content,$sel_options,$readonlys,$preserve,2);
}