Server IP : 184.154.167.98 / Your IP : 3.141.45.90 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/mesa/include/client/ |
Upload File : |
<?php if(!defined('OSTCLIENTINC') || !$thisclient || !$ticket || !$ticket->checkUserAccess($thisclient)) die('Access Denied!'); ?> <h1> <?php echo sprintf(__('Editing Ticket #%s'), $ticket->getNumber()); ?> </h1> <form action="tickets.php" method="post"> <?php echo csrf_token(); ?> <input type="hidden" name="a" value="edit"/> <input type="hidden" name="id" value="<?php echo Format::htmlchars($_REQUEST['id']); ?>"/> <table width="800"> <tbody id="dynamic-form"> <?php if ($forms) foreach ($forms as $form) { $form->render(['staff' => false]); } ?> </tbody> </table> <hr> <p style="text-align: center;"> <input type="submit" value="<?php echo __('Update') ?>"/> <input type="reset" value="<?php echo __('Reset') ?>"/> <input type="button" value="<?php echo __('Cancel') ?>" onclick="javascript: window.location.href='index.php';"/> </p> </form>