BUG-8753 Short Tags are Still Present as of Version 2.0.38 SOLVED
- Short tags are still present in the code in the form of the short print tag: <?= - Changing of the short tags for deprecated functions and code.
This commit is contained in:
@@ -28,9 +28,9 @@
|
||||
|
||||
<h1>demo de buscador</h1>
|
||||
<form method=post action="buscador2.php">
|
||||
<input type=hidden name=ticket value="<?= $frm['ticket'] ?>" >
|
||||
<input type=hidden name=tipo value="<?= $frm['tipo'] ?>" >
|
||||
Buscador tipo : <?= $frm['tipo'] ?><br>
|
||||
<input type=hidden name=ticket value="<?php echo $frm['ticket'] ?>" >
|
||||
<input type=hidden name=tipo value="<?php echo $frm['tipo'] ?>" >
|
||||
Buscador tipo : <?php echo $frm['tipo'] ?><br>
|
||||
|
||||
<table><tr><td>
|
||||
curso</td><td>
|
||||
|
||||
Reference in New Issue
Block a user