Merge pull request #158 from hector-cortez/BUG-9353
BUG 9353 PHP Short tags errors in Webservices test SOLVED
This commit is contained in:
@@ -137,7 +137,7 @@ G::RenderPage ( "publish" );
|
||||
// note added by carlos pacha carlos[at]colosa[dot]com pckrlos[at]gmail[dot]com
|
||||
// the following lines of code are getting the hight of panel. Related 8021 bug
|
||||
var hightpnl= 424;
|
||||
var varjs = "<?= isset($_POST['form']['USER_ENV'])?$_POST['form']['USER_ENV']:''; ?>";
|
||||
var varjs = "<?php echo isset($_POST['form']['USER_ENV'])?$_POST['form']['USER_ENV']:''; ?>";
|
||||
if(varjs !=' ')
|
||||
hightpnl= 330;
|
||||
|
||||
|
||||
@@ -58,9 +58,9 @@ if($RBAC->userCanAccess('PM_SETUP') != 1 && $RBAC->userCanAccess('PM_FACTORY') !
|
||||
var oAux = document.getElementById("publisherContent[0]");
|
||||
oAux.id = "publisherContent[666]";
|
||||
var currentGroup=false;
|
||||
|
||||
|
||||
function webServicesSetup(){
|
||||
popupWindow('' , '<?=$link_Edit?>' , 500 , 225 );
|
||||
popupWindow('' , '<?php echo $link_Edit ?>' , 500 , 225 );
|
||||
}
|
||||
|
||||
function showFormWS( uid, element ){
|
||||
@@ -134,7 +134,7 @@ if($RBAC->userCanAccess('PM_SETUP') != 1 && $RBAC->userCanAccess('PM_FACTORY') !
|
||||
}
|
||||
|
||||
function refreshTree(){
|
||||
tree.refresh( document.getElementById("publisherContent[666]") , '<?=$link_List?>');
|
||||
tree.refresh( document.getElementById("publisherContent[666]") , '<?php echo $link_List ?>');
|
||||
}
|
||||
|
||||
function showDetails(){
|
||||
|
||||
@@ -195,7 +195,7 @@
|
||||
var client_window = parent.getClientWindowSize();
|
||||
h = client_window.height;
|
||||
h1 = (h / 100) * 92;
|
||||
window.parent.popupWindow('', "fields_Edit?A=<?=$_SESSION['Current_Dynafom']['Parameters']['URL']?>&XMLNODE_NAME="+ uid , 600, h1);
|
||||
window.parent.popupWindow('', "fields_Edit?A=<?php echo $_SESSION['Current_Dynafom']['Parameters']['URL']?>&XMLNODE_NAME="+ uid , 600, h1);
|
||||
|
||||
}
|
||||
|
||||
@@ -206,7 +206,7 @@
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "fields_Delete",
|
||||
data: 'A=<?=$_SESSION['Current_Dynafom']['Parameters']['URL']?>&XMLNODE_NAME='+uid,
|
||||
data: 'A=<?php echo $_SESSION['Current_Dynafom']['Parameters']['URL']?>&XMLNODE_NAME='+uid,
|
||||
success: function(httpResponse){
|
||||
window.parent.dynaformEditor.refreshFieldsList();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user