Вход Регистрация
Файл: forum/includes/tema.php
Строк: 99
<?php

/**
* @package     JohnCMS
* @link        http://johncms.com
* @copyright   Copyright (C) 2008-2011 JohnCMS Community
* @license     LICENSE.txt (see attached file)
* @version     VERSION.txt (see attached file)
* @author      http://johncms.com/about
*/

defined('_IN_JOHNCMS') or die('Error: restricted access');
require(
'../incfiles/head.php');
$delf opendir('../files/forum/topics');
$tm = array();
while (
$tt readdir($delf)) {
    if (
$tt != "." && $tt != ".." && $tt != 'index.php' && $tt != '.svn') {
        
$tm[] = $tt;
    }
}
closedir($delf);
$totalt count($tm);
for (
$it 0$it $totalt$it++) {
    
$filtime[$it] = filemtime("../files/forum/topics/$tm[$it]");
    
$tim time();
    
$ftime1 $tim 300;
    if (
$filtime[$it] < $ftime1) {
        
unlink("../files/forum/topics/$tm[$it]");
    }
}
if (!
$id) {
    echo 
functions::display_error($lng['error_wrong_data']);
    require(
'../incfiles/end.php');
    exit;
}
$req mysql_query("SELECT * FROM `forum` WHERE `id` = '$id' AND `type` = 't' AND `close` != '1'");
if (!
mysql_num_rows($req)) {
    echo 
functions::display_error($lng['error_wrong_data']);
    require(
'../incfiles/end.php');
    exit;
}
if (isset(
$_POST['submit'])) {
    
$type1 mysql_fetch_assoc($req);
    
$tema mysql_query("SELECT * FROM `forum` WHERE `refid` = '$id' AND `type` = 'm'" . ($rights >= '' " AND `close` != '1'") . " ORDER BY `id` ASC");
    
$mod intval($_POST['mod']);
    switch (
$mod) {
        case 
1:
            
////////////////////////////////////////////////////////////
            // Сохраняем тему в текстовом формате                     //
            ////////////////////////////////////////////////////////////
            
$text $type1['text'] . "rnrn";
            while (
$arr mysql_fetch_assoc($tema)) {
                
$txt_tmp str_replace('[c]'$lng_forum['cytate'] . ':{'$arr['text']);
                
$txt_tmp str_replace('[/c]''}-' $lng_forum['answer'] . ':'$txt_tmp);
                
$txt_tmp str_replace("&quot;"""", $txt_tmp);
                
$txt_tmp = str_replace("[l]", "", $txt_tmp);
                
$txt_tmp = str_replace("[l/]", "-", $txt_tmp);
                
$txt_tmp = str_replace("[/l]", "", $txt_tmp);
                
$stroka = $arr['from'] . '(' . date("d.m.Y/H:i", $arr['time']) . ")rn" . $txt_tmp . "rnrn";
                
$text .= $stroka;
            }
            
$num = time() . $id;
            
$fp = fopen("../files/forum/topics/$num.txt", "a+");
            flock(
$fp, LOCK_EX);
            fputs(
$fp, "$textrn");
            fflush(
$fp);
            flock(
$fp, LOCK_UN);
            fclose(
$fp);
            @chmod("
$fp", 0777);
            @chmod("
../files/forum/topics/$num.txt", 0777);
            echo '<a href="
index.php?act=loadtem&amp;n=' . $num . '">' . $lng['download'] . '</a><br/>' . $lng_forum['download_topic_help'] . '<br/><a href="index.php">' . $lng['to_forum'] . '</a><br/>';
            break;

        case 2:
            ////////////////////////////////////////////////////////////
            // Сохраняем тему в формате HTML                          //
            ////////////////////////////////////////////////////////////
            
$text =
                "
<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'><html><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
<
title>" . $lng['forum']
                . "
</title>
<
style type='text/css'>
body color#000000; background-color: #FFFFFF }
div margin1px 0px 1px 0pxpadding5px 5px 5px 5px;}
.
{background-color#FFFFFF; }
.{background-color#EEEEEE; }
.quote{font-sizex-smallpadding2px 0px 2px 4pxcolor#878787; border-left: 3px solid #c0c0c0;
}
</
style></head>
      <
body><p><b><u>$type1[text]</u></b></p>";
            
$i = 1;
            while (
$arr = mysql_fetch_array($tema)) {
                
$d = $i / 2;
                
$d1 = ceil($d);
                
$d2 = $d1 - $d;
                
$d3 = ceil($d2);
                if (
$d3 == 0) {
                    
$div = "<div class='b'>";
                } else {
                    
$div = "<div class='c'>";
                }
                
$txt_tmp = htmlentities($arr['text'], ENT_QUOTES, 'UTF-8');
                
$txt_tmp = bbcode::tags($txt_tmp);
                
$txt_tmp = preg_replace('#[c](.*?)[/c]#si', '<div class="quote">1</div>', $txt_tmp);
                
$txt_tmp = str_replace("rn", "<br/>", $txt_tmp);
                
$stroka = "$div <b>$arr[from]</b>(" . date("d.m.Y/H:i", $arr['time']) . ")<br/>$txt_tmp</div>";
                
$text = "$text $stroka";
                ++
$i;
            }
            
$text = $text . '<p>' . $lng_forum['download_topic_note'] . ': <b>' . $set['copyright'] . '</b></p></body></html>';
            
$num = time() . $id;
            
$fp = fopen("../files/forum/topics/$num.htm", "a+");
            flock(
$fp, LOCK_EX);
            fputs(
$fp, "$textrn");
            fflush(
$fp);
            flock(
$fp, LOCK_UN);
            fclose(
$fp);
            @chmod("
$fp", 0777);
            @chmod("
../files/forum/topics/$num.htm", 0777);
            echo '<a href="
index.php?act=loadtem&amp;n=' . $num . '">' . $lng['download'] . '</a><br/>' . $lng_forum['download_topic_help'] . '<br/><a href="index.php">' . $lng['to_forum'] . '</a><br/>';
            break;
    }
} else {
    echo'<p>' . 
$lng_forum['download_topic_format'] . '<br/>' .
        '<form action="
index.php?act=tema&amp;id=' . $id . '" method="post">' .
        '<select name="
mod"><option value="1">.txt</option>' .
        '<option value="
2">.htm</option></select>' .
        '<input type="
submit" name="submit" value="' . $lng['download'] . '"/>' .
        '</form></p>';
}
Онлайн: 1
Реклама