%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/components/com_kunena/template/nts_kargo/html/topic/ |
Upload File : |
<?php /** * Kunena Component * @package Kunena.Template.Blue_Eagle * @subpackage Topic * * @copyright (C) 2008 - 2013 Kunena Team. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @link http://www.kunena.org **/ defined ( '_JEXEC' ) or die (); ?> <div class="kmsgbody"> <div class="kmsgtext"> <?php echo KunenaHtmlParser::parseBBCode ($this->message->message, $this) ?> </div> </div> <div> <?php if (!empty($this->attachments)) : ?> <div class="kmsgattach"> <?php echo JText::_('COM_KUNENA_ATTACHMENTS');?> <ul class="kfile-attach"> <?php foreach($this->attachments as $attachment) : ?> <li> <?php echo $attachment->getThumbnailLink(); ?> <span> <?php echo $attachment->getTextLink(); ?> </span> </li> <?php endforeach; ?> </ul> </div> </div> <?php endif; ?> <?php if ( $this->quickreply ) : ?> <div id="kreply<?php echo intval($this->message->id) ?>_form" class="kreply-form" style="display: none"> <form action="<?php echo KunenaRoute::_('index.php?option=com_kunena') ?>" method="post" name="postform" enctype="multipart/form-data"> <input type="hidden" name="view" value="topic" /> <input type="hidden" name="task" value="post" /> <input type="hidden" name="parentid" value="<?php echo intval($this->message->id) ?>" /> <input type="hidden" name="catid" value="<?php echo intval($this->category->id) ?>" /> <?php echo JHtml::_( 'form.token' ) ?> <?php if ($this->me->exists() && $this->category->allow_anonymous): ?> <input type="text" name="authorname" size="35" class="kinputbox postinput" maxlength="35" value="<?php echo $this->escape($this->profile->getName()) ?>" /><br /> <input type="checkbox" id="kanonymous<?php echo intval($this->message->id) ?>" name="anonymous" value="1" class="kinputbox postinput" <?php if ($this->category->post_anonymous) echo 'checked="checked"'; ?> /> <label for="kanonymous<?php echo intval($this->message->id) ?>"><?php echo JText::_('COM_KUNENA_POST_AS_ANONYMOUS_DESC') ?></label><br /> <?php else: ?> <input type="hidden" name="authorname" value="<?php echo $this->escape($this->profile->getName()) ?>" /> <?php endif; ?> <input type="text" name="subject" size="35" class="inputbox" maxlength="<?php echo intval($this->config->maxsubject); ?>" value="<?php echo $this->escape($this->message->subject) ?>" /><br /> <textarea class="inputbox" name="message" rows="6" cols="60"></textarea><br /> <?php if ($this->topic->authorise('subscribe') && !$this->usertopic->subscribed) : ?> <?php if ( !$this->usertopic->subscribed ): ?><input type="checkbox" name="subscribeMe" value="1" <?php if ($this->config->subscriptionschecked == 1) echo 'checked="checked"' ?> /><?php endif; ?> <i><?php echo JText::_('COM_KUNENA_POST_NOTIFIED'); ?></i> <br /> <?php endif; ?> <input type="submit" class="kbutton kreply-submit" name="submit" value="<?php echo JText::_('COM_KUNENA_SUBMIT') ?>" title="<?php echo (JText::_('COM_KUNENA_EDITOR_HELPLINE_SUBMIT'));?>" /> <input type="reset" class="kbutton kreply-cancel" name="cancel" value="<?php echo JText::_('COM_KUNENA_CANCEL') ?>" title="<?php echo (JText::_('COM_KUNENA_EDITOR_HELPLINE_CANCEL'));?>" /> <small><?php echo JText::_('COM_KUNENA_QMESSAGE_NOTE') ?></small> </form> </div> <?php endif ?>