Fixed URL without double slashes

This commit is contained in:
Paolo
2017-08-02 16:56:51 +02:00
parent 65be806e91
commit dda920dd58
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -42,7 +42,7 @@
}
}
?>
<form action="<?php echo APP_ROOT; ?>/index.ci.php/system/UDF/saveUDF" method="POST">
<form action="<?php echo APP_ROOT; ?>index.ci.php/system/UDF/saveUDF" method="POST">
<div class="div-table">
<div class="div-row">
+1 -1
View File
@@ -32,6 +32,6 @@ function loadUDF(person_id, prestudent_id)
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/UDF?person_id='+person_id+'&prestudent_id='+prestudent_id);
}
}