Merge branch 'hotfix-4790/FAS_UDF_tab_saving_is_broken'

This commit is contained in:
Andreas Österreicher
2019-10-15 16:06:48 +02:00
5 changed files with 195 additions and 187 deletions
+3 -3
View File
@@ -29,9 +29,9 @@ function loadUDF(person_id, prestudent_id)
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var udfIFrame = document.getElementById('udfIFrame');
if (udfIFrame != null && udfIFrame.getAttribute('src') == 'about:blank')
{
udfIFrame.setAttribute('src', '<?php echo APP_ROOT ?>index.ci.php/system/UDF?person_id='+person_id+'&prestudent_id='+prestudent_id);
udfIFrame.setAttribute('src', '<?php echo APP_ROOT ?>index.ci.php/system/FAS_UDF?person_id='+person_id+'&prestudent_id='+prestudent_id);
}
}
}