<a class="white_link" href="javascript:void(null);" onClick="javascript:openRawHeaders();">Blocked Message Raw Headers</a>
                  <?php 
    }
    ?>
                </td>
              </tr>
            </table>
          </td>
        </tr>
        <tr>
          <td colspan="2" bgcolor="<?php 
    echo $this->_tpl_vars['light_color'];
    ?>
" id="email_message" class="default">
<?php 
    echo is_array($_tmp = is_array($_tmp = is_array($_tmp = $this->_tpl_vars['note']['message']) ? $this->_run_mod_handler('highlight_quoted', true, $_tmp) : smarty_modifier_highlight_quoted($_tmp)) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)) ? $this->_run_mod_handler('activateLinks', true, $_tmp) : Link_Filter::activateLinks($_tmp);
    ?>

          </td>
        </tr>
        <tr>
          <td colspan="2" bgcolor="<?php 
    echo $this->_tpl_vars['internal_color'];
    ?>
" align="center">
            <input class="button" type="button" value="Reply" onClick="javascript:reply(<?php 
    echo $_GET['id'];
    ?>
, <?php 
    echo $this->_tpl_vars['issue_id'];
    ?>
Example #2
0
 /**
  * Highlights quoted replies. Relies on a smarty plugin written by
  * Joscha Feth, joscha@feth.com, www.feth.com
  *
  * @access  public
  * @param   string $text The text to highlight
  * @return  string The highlighted text
  */
 function highlightQuotedReply($text)
 {
     include_once APP_SMARTY_PATH . "plugins/modifier.highlight_quoted.php";
     return smarty_modifier_highlight_quoted($text);
 }
Example #3
0
 /**
  * Highlights quoted replies. Relies on a smarty plugin written by
  * Joscha Feth, joscha@feth.com, www.feth.com
  *
  * @param   string $text The text to highlight
  * @return  string The highlighted text
  */
 public static function highlightQuotedReply($text)
 {
     require_once APP_INC_PATH . '/smarty/modifier.highlight_quoted.php';
     return smarty_modifier_highlight_quoted($text);
 }