BUG 0000 Missing php shot tag replacement "<?" -> "<?php"
On class.propelTable.php
This commit is contained in:
@@ -750,22 +750,22 @@ class propelTable
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<script language='JavaScript' >
|
<script language='JavaScript' >
|
||||||
var <?=$this->id?><?=($this->name != '' ? '='.$this->name : '')?>=new G_PagedTable();
|
var <?php echo $this->id?><?php echo ($this->name != '' ? '='.$this->name : '')?>=new G_PagedTable();
|
||||||
<?=$this->id?>.id<?='="'. addslashes($this->id) . '"'?>;
|
<?php echo $this->id?>.id<?php echo '="'. addslashes($this->id) . '"'?>;
|
||||||
<?=$this->id?>.name<?='="'. addslashes($this->name) . '"'?>;
|
<?php echo $this->id?>.name<?php echo '="'. addslashes($this->name) . '"'?>;
|
||||||
<?=$this->id?>.ajaxUri<?='="'. addslashes($this->ajaxServer) . '?ptID='.$this->id.'"'?>;
|
<?php echo $this->id?>.ajaxUri<?php echo '="'. addslashes($this->ajaxServer) . '?ptID='.$this->id.'"'?>;
|
||||||
<?=$this->id?>.currentOrder<?='="'. addslashes($this->orderBy) . '"'?>;
|
<?php echo $this->id?>.currentOrder<?php echo '="'. addslashes($this->orderBy) . '"'?>;
|
||||||
<?=$this->id?>.currentFilter;
|
<?php echo $this->id?>.currentFilter;
|
||||||
<?=$this->id?>.currentPage<?='='. $this->currentPage?>;
|
<?php echo $this->id?>.currentPage<?php echo '='. $this->currentPage?>;
|
||||||
<?=$this->id?>.totalRows<?='='.$this->totRows ?>;
|
<?php echo $this->id?>.totalRows<?php echo '='.$this->totRows ?>;
|
||||||
<?=$this->id?>.rowsPerPage<?='='.$this->rowsPerPage?>;
|
<?php echo $this->id?>.rowsPerPage<?php echo '='.$this->rowsPerPage?>;
|
||||||
<?=$this->id?>.popupPage<?='="'. addslashes($this->popupPage) . '?ptID='.$this->id.'"'?>;
|
<?php echo $this->id?>.popupPage<?php echo '="'. addslashes($this->popupPage) . '?ptID='.$this->id.'"'?>;
|
||||||
<?=$this->id?>.onUpdateField<?='="'. addslashes($this->onUpdateField) . '"'?>;
|
<?php echo $this->id?>.onUpdateField<?php echo '="'. addslashes($this->onUpdateField) . '"'?>;
|
||||||
<?=$this->id?>.shownFields<?='='.$this->shownFields ?>;
|
<?php echo $this->id?>.shownFields<?php echo '='.$this->shownFields ?>;
|
||||||
|
|
||||||
var panelPopup;
|
var panelPopup;
|
||||||
var popupWidth<?='='.$this->popupWidth?>;
|
var popupWidth<?php echo '='.$this->popupWidth?>;
|
||||||
var popupHeight<?='='.$this->popupHeight?>;
|
var popupHeight<?php echo '='.$this->popupHeight?>;
|
||||||
</script>
|
</script>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user