[ROSADMIN] Replace <? by <?php, our webserver likes that better.

This commit is contained in:
Colin Finck 2021-03-13 16:42:50 +01:00
parent ca4f719a59
commit 32eff17852
No known key found for this signature in database
GPG Key ID: 1BA74E70456BA1A9

View File

@ -222,9 +222,9 @@
<button type="submit" name="a" value="revoke" class="btn btn-warning">Revoke</button> <button type="submit" name="a" value="revoke" class="btn btn-warning">Revoke</button>
</form> </form>
</td> </td>
<td><? echo $e['token']; ?></td> <td><?php echo $e['token']; ?></td>
<td><? echo implode('<br>', $this->_ra->mm->getSessionAddresses($chat_audits, $e['id'])); ?></td> <td><?php echo implode('<br>', $this->_ra->mm->getSessionAddresses($chat_audits, $e['id'])); ?></td>
<td><? echo htmlspecialchars($ua); ?></td> <td><?php echo htmlspecialchars($ua); ?></td>
</tr> </tr>
<?php <?php
} }