1

Тема: Проблемы с include на категориях

Приветь!

Сделал инклуд на категории чтоб при открывание  site.ru/cetegory1/   показал отдельный шаблон.

[category=1]{include file="team/c1.tpl"}[/category]

Все работает без проблем но google показывает ошибку 404 как лечить эту проблему?

Re: Проблемы с include на категориях

TITAN-UZ, А без инклуда все нормально?

3

Re: Проблемы с include на категориях

Я сделал так чтоб короткие новости были скрыты с  (site.ru/cetegory1/) на c1.tpl сделан меню с изображениями линьком на новость в этом категории.   

Все кроме этого категории работает без проблем!

Re: Проблемы с include на категориях

TITAN-UZ, Что-то у тебя с грамотой беда... Фиг поймешь, что ты хотел сказать sad
Так при редактировании категории в админке укажи индивидуальный шаблон, зачем велосипед сочинять?

5

Re: Проблемы с include на категориях

Sorry! По русски я не знаток?

Если указать шаблон в категории тогда этот меню повторяются.

6

Re: Проблемы с include на категориях

Возникла подобная проблема: При установке в настройках категории отдельного шаблона ничего не меняется, при этом показывается что установлен выбранный мной шаблон.

Идея такова: сделать для категории "1" отдельный шаблон чтобы в нем можно было выводить топ новости (категории "1") в левом блоке. Как можно организовать?

7 (07.05.2015 00:29 отредактировано svetlana)

Re: Проблемы с include на категориях

А в остальном шаблон будет тот же? Только топ другой?
топ стандартный или модуль?

8

Re: Проблемы с include на категориях

Шаблон планировалось сделать другой только для одной категории. Все остальное останется тоже самое

9

Re: Проблемы с include на категориях

В index.php
перед

$tpl->load_template ( 'main.tpl' );

вписать

if ($category_id == "ид категории") {$config['skin'] = "имя шаблона";}

но лучше найти причину по которой не работает стандартная функция, возможно что-то в init.php потерли.

10

Re: Проблемы с include на категориях

Добавил код if ($category_id == "19") {$config['skin'] = "novosti tehnologi";} все-равно ничего не меняется, работает основной шаблон который установлен по умолчанию...
Возможно ли как то подключить отдельно второй  main.tpl для этой категории, а не целиком шаблон?

11

Re: Проблемы с include на категориях

ну потому же принципу
только

$tpl->load_template ( 'main.tpl' );

заменить
на

if ($category_id == "19") {$tpl->load_template ( 'main_другой.tpl' );} 
else
{$tpl->load_template ( 'main.tpl' );}

Даже проверила и оба варианта работают нормально.

12 (08.05.2015 06:00 отредактировано xxEmagExx)

Re: Проблемы с include на категориях

C подключением разобрался, не подключалось из- за названия шаблона. А как можно вывести топ новости категории "19" чтобы отображались только новости этой категории

13

Re: Проблемы с include на категориях

Ну хотя бы так
заменить оригинальный topnews.php на это

+ открыть спойлер
<?php
/*
=====================================================
 DataLife Engine - by SoftNews Media Group 
-----------------------------------------------------
 http://dle-news.ru/
-----------------------------------------------------
 Copyright (c) 2004,2014 SoftNews Media Group
=====================================================
 Данный код защищен авторскими правами
=====================================================
 Файл: topnews.php
-----------------------------------------------------
 Назначение: вывод рейтинговых статей
=====================================================
*/

if( ! defined( 'DATALIFEENGINE' ) ) {
    die( "Hacking attempt!" );
}

if ($category_id == "19") {
    $tpl->result['topnews'] = dle_cache( "topnews19", $config['skin'], true );

if( $tpl->result['topnews'] === false ) {
    
    $this_month = date( 'Y-m-d H:i:s', $_TIME );

    $tpl->load_template( 'topnews.tpl' );

    if( strpos( $tpl->copy_template, "[xfvalue_" ) !== false OR strpos( $tpl->copy_template, "[xfgiven_" ) !== false ) { $xfound = true; $xfields = xfieldsload();}
    else $xfound = false;

    $config['top_number'] = intval($config['top_number']);
    if ($config['top_number'] < 1 ) $config['top_number'] = 10;

    
    $db->query( "SELECT p.id, p.date, p.short_story, p.xfields, p.title, p.category, p.alt_name FROM " . PREFIX . "_post p LEFT JOIN " . PREFIX . "_post_extras e ON (p.id=e.news_id) WHERE p.category = '19' AND p.approve=1 AND p.date >= '$this_month' - INTERVAL 1 MONTH AND p.date < '$this_month' ORDER BY rating DESC, comm_num DESC, news_read DESC, date DESC LIMIT 0,{$config['top_number']}" );
    
    while ( $row = $db->get_row() ) {
        
        $row['date'] = strtotime( $row['date'] );

        if( ! $row['category'] ) {
            $my_cat = "---";
            $my_cat_link = "---";
        } else {
            
            $my_cat = array ();
            $my_cat_link = array ();
            $cat_list = explode( ',', $row['category'] );

            if ($config['category_separator'] != ',') $config['category_separator'] = ' '.$config['category_separator'];
         
            if( count( $cat_list ) == 1 ) {
                
                $my_cat[] = $cat_info[$cat_list[0]]['name'];
                
                $my_cat_link = get_categories( $cat_list[0], $config['category_separator'] );
            
            } else {
                
                foreach ( $cat_list as $element ) {
                    if( $element ) {
                        $my_cat[] = $cat_info[$element]['name'];
                        if( $config['allow_alt_url'] ) $my_cat_link[] = "<a href=\"" . $config['http_home_url'] . get_url( $element ) . "/\">{$cat_info[$element]['name']}</a>";
                        else $my_cat_link[] = "<a href=\"$PHP_SELF?do=cat&category={$cat_info[$element]['alt_name']}\">{$cat_info[$element]['name']}</a>";
                    }
                }
                
                $my_cat_link = implode( "{$config['category_separator']} ", $my_cat_link );
            }
            
            $my_cat = implode( "{$config['category_separator']} ", $my_cat );
        }

        $row['category'] = intval( $row['category'] );
        
        if( $config['allow_alt_url'] ) {
            
            if( $config['seo_type'] == 1 OR $config['seo_type'] == 2 ) {
                
                if( $row['category'] and $config['seo_type'] == 2 ) {
                    
                    $full_link = $config['http_home_url'] . get_url( $row['category'] ) . "/" . $row['id'] . "-" . $row['alt_name'] . ".html";
                
                } else {
                    
                    $full_link = $config['http_home_url'] . $row['id'] . "-" . $row['alt_name'] . ".html";
                
                }
            
            } else {
                
                $full_link = $config['http_home_url'] . date( 'Y/m/d/', $row['date'] ) . $row['alt_name'] . ".html";
            }
        
        } else {
            
            $full_link = $config['http_home_url'] . "index.php?newsid=" . $row['id'];
        
        }

        if( date( 'Ymd', $row['date'] ) == date( 'Ymd', $_TIME ) ) {
            
            $tpl->set( '{date}', $lang['time_heute'] . langdate( ", H:i", $row['date'] ) );
        
        } elseif( date( 'Ymd', $row['date'] ) == date( 'Ymd', ($_TIME - 86400) ) ) {
            
            $tpl->set( '{date}', $lang['time_gestern'] . langdate( ", H:i", $row['date'] ) );
        
        } else {
            
            $tpl->set( '{date}', langdate( $config['timestamp_active'], $row['date'] ) );
        
        }

        $news_date = $row['date'];
        $tpl->copy_template = preg_replace_callback ( "#\{date=(.+?)\}#i", "formdate", $tpl->copy_template );

        $tpl->set( '{category}', $my_cat );
        $tpl->set( '{link-category}', $my_cat_link );

        $row['title'] = stripslashes( $row['title'] );

        $row['title'] = str_replace( "{", "&#123;", $row['title'] );

        $tpl->set( '{title}', $row['title'] );
        
        if ( preg_match( "#\\{title limit=['\"](.+?)['\"]\\}#i", $tpl->copy_template, $matches ) ) {
            $count= intval($matches[1]);

            $row['title'] = strip_tags( $row['title'] );

            if( $count AND dle_strlen( $row['title'], $config['charset'] ) > $count ) {
                    
                $row['title'] = dle_substr( $row['title'], 0, $count, $config['charset'] );
                    
                if( ($temp_dmax = dle_strrpos( $row['title'], ' ', $config['charset'] )) ) $row['title'] = dle_substr( $row['title'], 0, $temp_dmax, $config['charset'] ). " ...";
                
            }

            $tpl->set( $matches[0], $row['title'] );

        }


        $tpl->set( '{link}', $full_link );

        $row['short_story'] = stripslashes( $row['short_story'] );

        if( $user_group[$member_id['user_group']]['allow_hide'] ) $row['short_story'] = str_ireplace( "[hide]", "", str_ireplace( "[/hide]", "", $row['short_story']) );
        else $row['short_story'] = preg_replace ( "#\[hide\](.+?)\[/hide\]#ims", "<div class=\"quote\">" . $lang['news_regus'] . "</div>", $row['short_story'] );

        if (stripos ( $tpl->copy_template, "{image-" ) !== false) {

            $images = array();
            preg_match_all('/(img|src)=("|\')[^"\'>]+/i', $row['short_story'], $media);
            $data=preg_replace('/(img|src)("|\'|="|=\')(.*)/i',"$3",$media[0]);

            foreach($data as $url) {
                $info = pathinfo($url);
                if (isset($info['extension'])) {
                    if ($info['filename'] == "spoiler-plus" OR $info['filename'] == "spoiler-plus" ) continue;
                    $info['extension'] = strtolower($info['extension']);
                    if (($info['extension'] == 'jpg') || ($info['extension'] == 'jpeg') || ($info['extension'] == 'gif') || ($info['extension'] == 'png')) array_push($images, $url);
                }
            }

            if ( count($images) ) {
                $i=0;
                foreach($images as $url) {
                    $i++;
                    $tpl->copy_template = str_replace( '{image-'.$i.'}', $url, $tpl->copy_template );
                    $tpl->copy_template = str_replace( '[image-'.$i.']', "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( '[/image-'.$i.']', "", $tpl->copy_template );
                }

            }

            $tpl->copy_template = preg_replace( "#\[image-(.+?)\](.+?)\[/image-(.+?)\]#is", "", $tpl->copy_template );
            $tpl->copy_template = preg_replace( "#\\{image-(.+?)\\}#i", "{THEME}/dleimages/no_image.jpg", $tpl->copy_template );

        }

        $tpl->set( '{text}', $row['short_story'] );

        if ( preg_match( "#\\{text limit=['\"](.+?)['\"]\\}#i", $tpl->copy_template, $matches ) ) {
            $count= intval($matches[1]);

            $row['short_story'] = str_replace( "</p><p>", " ", $row['short_story'] );
            $row['short_story'] = strip_tags( $row['short_story'], "<br>" );
            $row['short_story'] = trim(str_replace( "<br>", " ", str_replace( "<br />", " ", str_replace( "\n", " ", str_replace( "\r", "", $row['short_story'] ) ) ) ));

            if( $count AND dle_strlen( $row['short_story'], $config['charset'] ) > $count ) {
                    
                $row['short_story'] = dle_substr( $row['short_story'], 0, $count, $config['charset'] );
                    
                if( ($temp_dmax = dle_strrpos( $row['short_story'], ' ', $config['charset'] )) ) $row['short_story'] = dle_substr( $row['short_story'], 0, $temp_dmax, $config['charset'] );
                
            }

            $tpl->set( $matches[0], $row['short_story'] );

        }

        // Обработка дополнительных полей
        if( $xfound ) {
            $xfieldsdata = xfieldsdataload( $row['xfields'] );
            
            foreach ( $xfields as $value ) {
                $preg_safe_name = preg_quote( $value[0], "'" );

                if ( $value[6] AND !empty( $xfieldsdata[$value[0]] ) ) {
                    $temp_array = explode( ",", $xfieldsdata[$value[0]] );
                    $value3 = array();

                    foreach ($temp_array as $value2) {

                        $value2 = trim($value2);
                        $value2 = str_replace("&#039;", "'", $value2);

                        if( $config['allow_alt_url'] ) $value3[] = "<a href=\"" . $config['http_home_url'] . "xfsearch/" . urlencode( $value2 ) . "/\">" . $value2 . "</a>";
                        else $value3[] = "<a href=\"$PHP_SELF?do=xfsearch&amp;xf=" . urlencode( $value2 ) . "\">" . $value2 . "</a>";
                    }

                    $xfieldsdata[$value[0]] = implode(", ", $value3);

                    unset($temp_array);
                    unset($value2);
                    unset($value3);

                }
        
                if( empty( $xfieldsdata[$value[0]] ) ) {
                    $tpl->copy_template = preg_replace( "'\\[xfgiven_{$preg_safe_name}\\](.*?)\\[/xfgiven_{$preg_safe_name}\\]'is", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[xfnotgiven_{$value[0]}]", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[/xfnotgiven_{$value[0]}]", "", $tpl->copy_template );
                } else {
                    $tpl->copy_template = preg_replace( "'\\[xfnotgiven_{$preg_safe_name}\\](.*?)\\[/xfnotgiven_{$preg_safe_name}\\]'is", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[xfgiven_{$value[0]}]", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[/xfgiven_{$value[0]}]", "", $tpl->copy_template );
                }
                
                $xfieldsdata[$value[0]] = stripslashes( $xfieldsdata[$value[0]] );

                if ( preg_match( "#\\[xfvalue_{$preg_safe_name} limit=['\"](.+?)['\"]\\]#i", $tpl->copy_template, $matches ) ) {
                    $count= intval($matches[1]);
        
                    $xfieldsdata[$value[0]] = str_replace( "</p><p>", " ", $xfieldsdata[$value[0]] );
                    $xfieldsdata[$value[0]] = strip_tags( $xfieldsdata[$value[0]], "<br>" );
                    $xfieldsdata[$value[0]] = trim(str_replace( "<br>", " ", str_replace( "<br />", " ", str_replace( "\n", " ", str_replace( "\r", "", $xfieldsdata[$value[0]] ) ) ) ));
        
                    if( $count AND dle_strlen( $xfieldsdata[$value[0]], $config['charset'] ) > $count ) {
                            
                        $xfieldsdata[$value[0]] = dle_substr( $xfieldsdata[$value[0]], 0, $count, $config['charset'] );
                            
                        if( ($temp_dmax = dle_strrpos( $xfieldsdata[$value[0]], ' ', $config['charset'] )) ) $xfieldsdata[$value[0]] = dle_substr( $xfieldsdata[$value[0]], 0, $temp_dmax, $config['charset'] );
                        
                    }
        
                    $tpl->set( $matches[0], $xfieldsdata[$value[0]] );
        
                } else    $tpl->copy_template = str_replace( "[xfvalue_{$value[0]}]", $xfieldsdata[$value[0]], $tpl->copy_template );

            }
        }
        // Обработка дополнительных полей


        $tpl->compile( 'topnews' );
    }

    $tpl->clear();    
    $db->free();

    create_cache( "topnews19", $tpl->result['topnews'], $config['skin'], true );
}
}

else

{
$tpl->result['topnews'] = dle_cache( "topnews", $config['skin'], true );

if( $tpl->result['topnews'] === false ) {
    
    $this_month = date( 'Y-m-d H:i:s', $_TIME );

    $tpl->load_template( 'topnews.tpl' );

    if( strpos( $tpl->copy_template, "[xfvalue_" ) !== false OR strpos( $tpl->copy_template, "[xfgiven_" ) !== false ) { $xfound = true; $xfields = xfieldsload();}
    else $xfound = false;

    $config['top_number'] = intval($config['top_number']);
    if ($config['top_number'] < 1 ) $config['top_number'] = 10;

    
    $db->query( "SELECT p.id, p.date, p.short_story, p.xfields, p.title, p.category, p.alt_name FROM " . PREFIX . "_post p LEFT JOIN " . PREFIX . "_post_extras e ON (p.id=e.news_id) WHERE p.approve=1 AND p.date >= '$this_month' - INTERVAL 1 MONTH AND p.date < '$this_month' ORDER BY rating DESC, comm_num DESC, news_read DESC, date DESC LIMIT 0,{$config['top_number']}" );
    
    while ( $row = $db->get_row() ) {
        
        $row['date'] = strtotime( $row['date'] );

        if( ! $row['category'] ) {
            $my_cat = "---";
            $my_cat_link = "---";
        } else {
            
            $my_cat = array ();
            $my_cat_link = array ();
            $cat_list = explode( ',', $row['category'] );

            if ($config['category_separator'] != ',') $config['category_separator'] = ' '.$config['category_separator'];
         
            if( count( $cat_list ) == 1 ) {
                
                $my_cat[] = $cat_info[$cat_list[0]]['name'];
                
                $my_cat_link = get_categories( $cat_list[0], $config['category_separator'] );
            
            } else {
                
                foreach ( $cat_list as $element ) {
                    if( $element ) {
                        $my_cat[] = $cat_info[$element]['name'];
                        if( $config['allow_alt_url'] ) $my_cat_link[] = "<a href=\"" . $config['http_home_url'] . get_url( $element ) . "/\">{$cat_info[$element]['name']}</a>";
                        else $my_cat_link[] = "<a href=\"$PHP_SELF?do=cat&category={$cat_info[$element]['alt_name']}\">{$cat_info[$element]['name']}</a>";
                    }
                }
                
                $my_cat_link = implode( "{$config['category_separator']} ", $my_cat_link );
            }
            
            $my_cat = implode( "{$config['category_separator']} ", $my_cat );
        }

        $row['category'] = intval( $row['category'] );
        
        if( $config['allow_alt_url'] ) {
            
            if( $config['seo_type'] == 1 OR $config['seo_type'] == 2 ) {
                
                if( $row['category'] and $config['seo_type'] == 2 ) {
                    
                    $full_link = $config['http_home_url'] . get_url( $row['category'] ) . "/" . $row['id'] . "-" . $row['alt_name'] . ".html";
                
                } else {
                    
                    $full_link = $config['http_home_url'] . $row['id'] . "-" . $row['alt_name'] . ".html";
                
                }
            
            } else {
                
                $full_link = $config['http_home_url'] . date( 'Y/m/d/', $row['date'] ) . $row['alt_name'] . ".html";
            }
        
        } else {
            
            $full_link = $config['http_home_url'] . "index.php?newsid=" . $row['id'];
        
        }

        if( date( 'Ymd', $row['date'] ) == date( 'Ymd', $_TIME ) ) {
            
            $tpl->set( '{date}', $lang['time_heute'] . langdate( ", H:i", $row['date'] ) );
        
        } elseif( date( 'Ymd', $row['date'] ) == date( 'Ymd', ($_TIME - 86400) ) ) {
            
            $tpl->set( '{date}', $lang['time_gestern'] . langdate( ", H:i", $row['date'] ) );
        
        } else {
            
            $tpl->set( '{date}', langdate( $config['timestamp_active'], $row['date'] ) );
        
        }

        $news_date = $row['date'];
        $tpl->copy_template = preg_replace_callback ( "#\{date=(.+?)\}#i", "formdate", $tpl->copy_template );

        $tpl->set( '{category}', $my_cat );
        $tpl->set( '{link-category}', $my_cat_link );

        $row['title'] = stripslashes( $row['title'] );

        $row['title'] = str_replace( "{", "&#123;", $row['title'] );

        $tpl->set( '{title}', $row['title'] );
        
        if ( preg_match( "#\\{title limit=['\"](.+?)['\"]\\}#i", $tpl->copy_template, $matches ) ) {
            $count= intval($matches[1]);

            $row['title'] = strip_tags( $row['title'] );

            if( $count AND dle_strlen( $row['title'], $config['charset'] ) > $count ) {
                    
                $row['title'] = dle_substr( $row['title'], 0, $count, $config['charset'] );
                    
                if( ($temp_dmax = dle_strrpos( $row['title'], ' ', $config['charset'] )) ) $row['title'] = dle_substr( $row['title'], 0, $temp_dmax, $config['charset'] ). " ...";
                
            }

            $tpl->set( $matches[0], $row['title'] );

        }


        $tpl->set( '{link}', $full_link );

        $row['short_story'] = stripslashes( $row['short_story'] );

        if( $user_group[$member_id['user_group']]['allow_hide'] ) $row['short_story'] = str_ireplace( "[hide]", "", str_ireplace( "[/hide]", "", $row['short_story']) );
        else $row['short_story'] = preg_replace ( "#\[hide\](.+?)\[/hide\]#ims", "<div class=\"quote\">" . $lang['news_regus'] . "</div>", $row['short_story'] );

        if (stripos ( $tpl->copy_template, "{image-" ) !== false) {

            $images = array();
            preg_match_all('/(img|src)=("|\')[^"\'>]+/i', $row['short_story'], $media);
            $data=preg_replace('/(img|src)("|\'|="|=\')(.*)/i',"$3",$media[0]);

            foreach($data as $url) {
                $info = pathinfo($url);
                if (isset($info['extension'])) {
                    if ($info['filename'] == "spoiler-plus" OR $info['filename'] == "spoiler-plus" ) continue;
                    $info['extension'] = strtolower($info['extension']);
                    if (($info['extension'] == 'jpg') || ($info['extension'] == 'jpeg') || ($info['extension'] == 'gif') || ($info['extension'] == 'png')) array_push($images, $url);
                }
            }

            if ( count($images) ) {
                $i=0;
                foreach($images as $url) {
                    $i++;
                    $tpl->copy_template = str_replace( '{image-'.$i.'}', $url, $tpl->copy_template );
                    $tpl->copy_template = str_replace( '[image-'.$i.']', "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( '[/image-'.$i.']', "", $tpl->copy_template );
                }

            }

            $tpl->copy_template = preg_replace( "#\[image-(.+?)\](.+?)\[/image-(.+?)\]#is", "", $tpl->copy_template );
            $tpl->copy_template = preg_replace( "#\\{image-(.+?)\\}#i", "{THEME}/dleimages/no_image.jpg", $tpl->copy_template );

        }

        $tpl->set( '{text}', $row['short_story'] );

        if ( preg_match( "#\\{text limit=['\"](.+?)['\"]\\}#i", $tpl->copy_template, $matches ) ) {
            $count= intval($matches[1]);

            $row['short_story'] = str_replace( "</p><p>", " ", $row['short_story'] );
            $row['short_story'] = strip_tags( $row['short_story'], "<br>" );
            $row['short_story'] = trim(str_replace( "<br>", " ", str_replace( "<br />", " ", str_replace( "\n", " ", str_replace( "\r", "", $row['short_story'] ) ) ) ));

            if( $count AND dle_strlen( $row['short_story'], $config['charset'] ) > $count ) {
                    
                $row['short_story'] = dle_substr( $row['short_story'], 0, $count, $config['charset'] );
                    
                if( ($temp_dmax = dle_strrpos( $row['short_story'], ' ', $config['charset'] )) ) $row['short_story'] = dle_substr( $row['short_story'], 0, $temp_dmax, $config['charset'] );
                
            }

            $tpl->set( $matches[0], $row['short_story'] );

        }

        // Обработка дополнительных полей
        if( $xfound ) {
            $xfieldsdata = xfieldsdataload( $row['xfields'] );
            
            foreach ( $xfields as $value ) {
                $preg_safe_name = preg_quote( $value[0], "'" );

                if ( $value[6] AND !empty( $xfieldsdata[$value[0]] ) ) {
                    $temp_array = explode( ",", $xfieldsdata[$value[0]] );
                    $value3 = array();

                    foreach ($temp_array as $value2) {

                        $value2 = trim($value2);
                        $value2 = str_replace("&#039;", "'", $value2);

                        if( $config['allow_alt_url'] ) $value3[] = "<a href=\"" . $config['http_home_url'] . "xfsearch/" . urlencode( $value2 ) . "/\">" . $value2 . "</a>";
                        else $value3[] = "<a href=\"$PHP_SELF?do=xfsearch&amp;xf=" . urlencode( $value2 ) . "\">" . $value2 . "</a>";
                    }

                    $xfieldsdata[$value[0]] = implode(", ", $value3);

                    unset($temp_array);
                    unset($value2);
                    unset($value3);

                }
        
                if( empty( $xfieldsdata[$value[0]] ) ) {
                    $tpl->copy_template = preg_replace( "'\\[xfgiven_{$preg_safe_name}\\](.*?)\\[/xfgiven_{$preg_safe_name}\\]'is", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[xfnotgiven_{$value[0]}]", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[/xfnotgiven_{$value[0]}]", "", $tpl->copy_template );
                } else {
                    $tpl->copy_template = preg_replace( "'\\[xfnotgiven_{$preg_safe_name}\\](.*?)\\[/xfnotgiven_{$preg_safe_name}\\]'is", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[xfgiven_{$value[0]}]", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[/xfgiven_{$value[0]}]", "", $tpl->copy_template );
                }
                
                $xfieldsdata[$value[0]] = stripslashes( $xfieldsdata[$value[0]] );

                if ( preg_match( "#\\[xfvalue_{$preg_safe_name} limit=['\"](.+?)['\"]\\]#i", $tpl->copy_template, $matches ) ) {
                    $count= intval($matches[1]);
        
                    $xfieldsdata[$value[0]] = str_replace( "</p><p>", " ", $xfieldsdata[$value[0]] );
                    $xfieldsdata[$value[0]] = strip_tags( $xfieldsdata[$value[0]], "<br>" );
                    $xfieldsdata[$value[0]] = trim(str_replace( "<br>", " ", str_replace( "<br />", " ", str_replace( "\n", " ", str_replace( "\r", "", $xfieldsdata[$value[0]] ) ) ) ));
        
                    if( $count AND dle_strlen( $xfieldsdata[$value[0]], $config['charset'] ) > $count ) {
                            
                        $xfieldsdata[$value[0]] = dle_substr( $xfieldsdata[$value[0]], 0, $count, $config['charset'] );
                            
                        if( ($temp_dmax = dle_strrpos( $xfieldsdata[$value[0]], ' ', $config['charset'] )) ) $xfieldsdata[$value[0]] = dle_substr( $xfieldsdata[$value[0]], 0, $temp_dmax, $config['charset'] );
                        
                    }
        
                    $tpl->set( $matches[0], $xfieldsdata[$value[0]] );
        
                } else    $tpl->copy_template = str_replace( "[xfvalue_{$value[0]}]", $xfieldsdata[$value[0]], $tpl->copy_template );

            }
        }
        // Обработка дополнительных полей


        $tpl->compile( 'topnews' );
    }

    $tpl->clear();    
    $db->free();

    create_cache( "topnews", $tpl->result['topnews'], $config['skin'], true );
}
}
?>

Re: Проблемы с include на категориях

http://audiobookkeeper.ruhttp://cottagenet.ruhttp://eyesvision.ruhttp://eyesvisions.comhttp://factoringfee.ruhttp://filmzones.ruhttp://gadwall.ruhttp://gaffertape.ruhttp://gageboard.ruhttp://gagrule.ruhttp://gallduct.ruhttp://galvanometric.ruhttp://gangforeman.ruhttp://gangwayplatform.ruhttp://garbagechute.ruhttp://gardeningleave.ruhttp://gascautery.ruhttp://gashbucket.ruhttp://gasreturn.ruhttp://gatedsweep.ruhttp://gaugemodel.ruhttp://gaussianfilter.ru
http://gearpitchdiameter.ruhttp://geartreating.ruhttp://generalizedanalysis.ruhttp://generalprovisions.ruhttp://geophysicalprobe.ruhttp://geriatricnurse.ruhttp://getintoaflap.ruhttp://getthebounce.ruhttp://habeascorpus.ruhttp://habituate.ruhttp://hackedbolt.ruhttp://hackworker.ruhttp://hadronicannihilation.ruhttp://haemagglutinin.ruhttp://hailsquall.ruhttp://hairysphere.ruhttp://halforderfringe.ruhttp://halfsiblings.ruhttp://hallofresidence.ruhttp://haltstate.ruhttp://handcoding.ruhttp://handportedhead.ru
http://handradar.ruhttp://handsfreetelephone.ruhttp://hangonpart.ruhttp://haphazardwinding.ruhttp://hardalloyteeth.ruhttp://hardasiron.ruhttp://hardenedconcrete.ruhttp://harmonicinteraction.ruhttp://hartlaubgoose.ruhttp://hatchholddown.ruhttp://haveafinetime.ruhttp://hazardousatmosphere.ruhttp://headregulator.ruhttp://heartofgold.ruhttp://heatageingresistance.ruhttp://heatinggas.ruhttp://heavydutymetalcutting.ruhttp://jacketedwall.ruhttp://japanesecedar.ruhttp://jibtypecrane.ruhttp://jobabandonment.ruhttp://jobstress.ru
http://jogformation.ruhttp://jointcapsule.ruhttp://jointsealingmaterial.ruhttp://journallubricator.ruhttp://juicecatcher.ruhttp://junctionofchannels.ruhttp://justiciablehomicide.ruhttp://juxtapositiontwin.ruhttp://kaposidisease.ruhttp://keepagoodoffing.ruhttp://keepsmthinhand.ruhttp://kentishglory.ruhttp://kerbweight.ruhttp://kerrrotation.ruhttp://keymanassurance.ruhttp://keyserum.ruhttp://kickplate.ruhttp://killthefattedcalf.ruhttp://kilowattsecond.ruhttp://kingweakfish.ruhttp://kinozones.ruhttp://kleinbottle.ru
http://kneejoint.ruhttp://knifesethouse.ruhttp://knockonatom.ruhttp://knowledgestate.ruhttp://kondoferromagnet.ruhttp://labeledgraph.ruhttp://laborracket.ruhttp://labourearnings.ruhttp://labourleasing.ruhttp://laburnumtree.ruhttp://lacingcourse.ruhttp://lacrimalpoint.ruhttp://lactogenicfactor.ruhttp://lacunarycoefficient.ruhttp://ladletreatediron.ruhttp://laggingload.ruhttp://laissezaller.ruhttp://lambdatransition.ruhttp://laminatedmaterial.ruhttp://lammasshoot.ruhttp://lamphouse.ruhttp://lancecorporal.ru
http://lancingdie.ruhttp://landingdoor.ruhttp://landmarksensor.ruhttp://landreform.ruhttp://landuseratio.ruhttp://languagelaboratory.ruhttp://largeheart.ruhttp://lasercalibration.ruhttp://laserlens.ruhttp://laserpulse.ruhttp://laterevent.ruhttp://latrinesergeant.ruhttp://layabout.ruhttp://leadcoating.ruhttp://leadingfirm.ruhttp://learningcurve.ruhttp://leaveword.ruhttp://machinesensible.ruhttp://magneticequator.ruhttp://magnetotelluricfield.ruhttp://mailinghouse.ruhttp://majorconcern.ru
http://mammasdarling.ruhttp://managerialstaff.ruhttp://manipulatinghand.ruhttp://manualchoke.ruhttp://medinfobooks.ruhttp://mp3lists.ruhttp://nameresolution.ruhttp://naphtheneseries.ruhttp://narrowmouthed.ruhttp://nationalcensus.ruhttp://naturalfunctor.ruhttp://navelseed.ruhttp://neatplaster.ruhttp://necroticcaries.ruhttp://negativefibration.ruhttp://neighbouringrights.ruhttp://objectmodule.ruhttp://observationballoon.ruhttp://obstructivepatent.ruhttp://oceanmining.ruhttp://octupolephonon.ruhttp://offlinesystem.ru
http://offsetholder.ruhttp://olibanumresinoid.ruhttp://onesticket.ruhttp://packedspheres.ruhttp://pagingterminal.ruhttp://palatinebones.ruhttp://palmberry.ruhttp://papercoating.ruhttp://paraconvexgroup.ruhttp://parasolmonoplane.ruhttp://parkingbrake.ruhttp://partfamily.ruhttp://partialmajorant.ruhttp://quadrupleworm.ruhttp://qualitybooster.ruhttp://quasimoney.ruhttp://quenchedspark.ruhttp://quodrecuperet.ruhttp://rabbetledge.ruhttp://radialchaser.ruhttp://radiationestimator.ruhttp://railwaybridge.ru
http://randomcoloration.ruhttp://rapidgrowth.ruhttp://rattlesnakemaster.ruhttp://reachthroughregion.ruhttp://readingmagnifier.ruhttp://rearchain.ruhttp://recessioncone.ruhttp://recordedassignment.ruhttp://rectifiersubstation.ruhttp://redemptionvalue.ruhttp://reducingflange.ruhttp://referenceantigen.ruhttp://regeneratedprotein.ruhttp://reinvestmentplan.ruhttp://safedrilling.ruhttp://sagprofile.ruhttp://salestypelease.ruhttp://samplinginterval.ruhttp://satellitehydrology.ruhttp://scarcecommodity.ruhttp://scrapermat.ruhttp://screwingunit.ru
http://seawaterpump.ruhttp://secondaryblock.ruhttp://secularclergy.ruhttp://seismicefficiency.ruhttp://selectivediffuser.ruhttp://semiasphalticflux.ruhttp://semifinishmachining.ruhttp://spicetrade.ruhttp://spysale.ruhttp://stungun.ruhttp://tacticaldiameter.ruhttp://tailstockcenter.ruhttp://tamecurve.ruhttp://tapecorrection.ruhttp://tappingchuck.ruhttp://taskreasoning.ruhttp://technicalgrade.ruhttp://telangiectaticlipoma.ruhttp://telescopicdamper.ruhttp://temperateclimate.ruhttp://temperedmeasure.ruhttp://tenementbuilding.ru
tuchkashttp://ultramaficrock.ruhttp://ultraviolettesting.ru

Re: Проблемы с include на категориях

Vrin

Добавлено: 24.06.2023 20:11

37.6

Добавлено: 24.06.2023 20:12

Bett

Добавлено: 24.06.2023 20:15

Bett

Добавлено: 24.06.2023 20:16

Rael

Добавлено: 24.06.2023 20:17

Colu

Добавлено: 24.06.2023 20:18

Bana

Добавлено: 24.06.2023 20:19

Henr

Добавлено: 24.06.2023 20:21

BNIA

Добавлено: 24.06.2023 20:22

Medi

Добавлено: 24.06.2023 20:23

Brot

Добавлено: 24.06.2023 20:24

Orie

Добавлено: 24.06.2023 20:25

Enns

Добавлено: 24.06.2023 20:45

Vrin

Добавлено: 24.06.2023 20:46

48.5

Добавлено: 24.06.2023 20:47

Bett

Добавлено: 24.06.2023 20:48

Bett

Добавлено: 24.06.2023 20:50

Jump

Добавлено: 24.06.2023 20:51

Dolb

Re: Проблемы с include на категориях

XVII

Добавлено: 27.08.2023 11:31

48.8

Добавлено: 27.08.2023 11:32

Bett

Добавлено: 27.08.2023 11:33

Bett

Добавлено: 27.08.2023 11:35

Jump

Добавлено: 27.08.2023 11:38

Part

Добавлено: 27.08.2023 11:39

Thre

Добавлено: 27.08.2023 11:40

XVII

Добавлено: 27.08.2023 11:41

Flem

Добавлено: 27.08.2023 11:42

Made

Добавлено: 27.08.2023 11:43

Baby

Добавлено: 27.08.2023 11:44

Dart

Добавлено: 27.08.2023 11:45

Sifr

Добавлено: 27.08.2023 11:46

Cher

Добавлено: 27.08.2023 11:48

ZORL

Добавлено: 27.08.2023 11:49

Wind

Добавлено: 27.08.2023 11:50

Atla

Добавлено: 27.08.2023 11:51

EXPE

Добавлено: 27.08.2023 11:52

Tefa

Добавлено: 27.08.2023 11:53

iMPA

Добавлено: 27.08.2023 11:54

Lanc

Добавлено: 27.08.2023 11:55

Soul

Добавлено: 27.08.2023 11:56

Blum

Добавлено: 27.08.2023 11:58

Jewe

Добавлено: 27.08.2023 11:59

Tocc

Добавлено: 27.08.2023 12:01

Stop

Добавлено: 27.08.2023 12:05

Wind

Добавлено: 27.08.2023 12:06

Abou

Добавлено: 27.08.2023 12:07

Caud

Добавлено: 27.08.2023 12:08

MAGI

Добавлено: 27.08.2023 12:10

Mick

Добавлено: 27.08.2023 12:11

Mika

Добавлено: 27.08.2023 12:12

John

Добавлено: 27.08.2023 12:13

Past

Добавлено: 27.08.2023 12:14

Myra

Добавлено: 27.08.2023 12:15

Mike

Добавлено: 27.08.2023 12:16

Doct

Добавлено: 27.08.2023 12:18

Geor

Добавлено: 27.08.2023 12:19

Yang

Добавлено: 27.08.2023 12:20

Barb

Добавлено: 27.08.2023 12:21

Elec

Добавлено: 27.08.2023 12:22

stop

Добавлено: 27.08.2023 12:26

Vive

Добавлено: 27.08.2023 12:27

Diad

Добавлено: 27.08.2023 12:28

Vein

Добавлено: 27.08.2023 12:29

Napo

Добавлено: 27.08.2023 12:30

Nadi

Добавлено: 27.08.2023 12:33

Sequ

Добавлено: 27.08.2023 12:37

Powe

Добавлено: 27.08.2023 12:38

Spor

Добавлено: 27.08.2023 12:39

Eliz

Добавлено: 27.08.2023 12:42

Muda

Добавлено: 27.08.2023 12:43

Blur

Добавлено: 27.08.2023 12:47

avan

Добавлено: 27.08.2023 12:48

Morn

Добавлено: 27.08.2023 12:49

Ralp

Добавлено: 27.08.2023 12:50

XVII

Добавлено: 27.08.2023 12:51

Mari

Добавлено: 27.08.2023 12:52

Ivan

Добавлено: 27.08.2023 12:55

Seve

Добавлено: 27.08.2023 12:57

Mick

Добавлено: 27.08.2023 13:00

Brad

Добавлено: 27.08.2023 13:01

Amar

Добавлено: 27.08.2023 13:07

Etni

Добавлено: 27.08.2023 13:08

Diam

Добавлено: 27.08.2023 13:09

Erle

Добавлено: 27.08.2023 13:11

Sony

Добавлено: 27.08.2023 13:12

Wind

Добавлено: 27.08.2023 13:13

Supe

Добавлено: 27.08.2023 13:16

Jaim

Добавлено: 27.08.2023 13:17

Sony

Добавлено: 27.08.2023 13:18

Blad

Добавлено: 27.08.2023 13:19

Wind

Добавлено: 27.08.2023 13:20

Jame

Добавлено: 27.08.2023 13:21

Sony

Добавлено: 27.08.2023 13:22

Texa

Добавлено: 27.08.2023 13:24

Devi

Добавлено: 27.08.2023 13:25

diam

Добавлено: 27.08.2023 13:26

Tato

Добавлено: 27.08.2023 13:27

mail

Добавлено: 27.08.2023 13:28

Clov

Добавлено: 27.08.2023 13:29

Silv

Добавлено: 27.08.2023 13:30

Pyrr

Добавлено: 27.08.2023 13:33

Coca

Добавлено: 27.08.2023 13:36

Jean

Добавлено: 27.08.2023 13:37

Vict

Добавлено: 27.08.2023 13:38

Knit

Добавлено: 27.08.2023 13:40

Zebr

Добавлено: 27.08.2023 13:41

Swee

Добавлено: 27.08.2023 13:42

diam

Добавлено: 27.08.2023 13:43

RHTL

Добавлено: 27.08.2023 13:46

Rich

Добавлено: 27.08.2023 13:47

Erle

Добавлено: 27.08.2023 13:48

Cake

Добавлено: 27.08.2023 13:49

NTRP

Добавлено: 27.08.2023 13:50

Jewe

Добавлено: 27.08.2023 13:51

XVII

Добавлено: 27.08.2023 13:52

Alex

Добавлено: 27.08.2023 13:55

Alex

Добавлено: 27.08.2023 13:56

Giga

Добавлено: 27.08.2023 13:58

Serg

Добавлено: 27.08.2023 13:59

Xenu

Добавлено: 27.08.2023 14:01

Wire

Добавлено: 27.08.2023 14:03

Puls

Добавлено: 27.08.2023 14:04

eTre

Добавлено: 27.08.2023 14:05

Wind

Добавлено: 27.08.2023 14:06

Bonu

Добавлено: 27.08.2023 14:09

Come

Добавлено: 27.08.2023 14:13

FORD

Добавлено: 27.08.2023 14:14

Pino

Добавлено: 27.08.2023 14:17

XVII

Добавлено: 27.08.2023 14:18

Sony

Добавлено: 27.08.2023 14:19

Asfu

Добавлено: 27.08.2023 14:20

Magi

Добавлено: 27.08.2023 14:21

Clim

Добавлено: 27.08.2023 14:22

Miel

Добавлено: 27.08.2023 14:24

Need

Добавлено: 27.08.2023 14:27

Fant

Добавлено: 27.08.2023 14:28

Bigb

Добавлено: 27.08.2023 14:29

Para

Добавлено: 27.08.2023 14:30

Ruya

Добавлено: 27.08.2023 14:33

Time

Добавлено: 27.08.2023 14:34

plac

Добавлено: 27.08.2023 14:35

Pach

Добавлено: 27.08.2023 14:39

City

Добавлено: 27.08.2023 14:40

BELL

Добавлено: 27.08.2023 14:41

Heli

Добавлено: 27.08.2023 14:47

shou

Добавлено: 27.08.2023 14:48

Jazz

Добавлено: 27.08.2023 14:49

Prin

Добавлено: 27.08.2023 14:52

Winx

Добавлено: 27.08.2023 14:53

Educ

Добавлено: 27.08.2023 14:54

Loli

Добавлено: 27.08.2023 14:56

Smob

Добавлено: 27.08.2023 14:57

Tolo

Добавлено: 27.08.2023 14:58

WIND

Добавлено: 27.08.2023 14:59

Wind

Добавлено: 27.08.2023 15:00

Pinn

Добавлено: 27.08.2023 15:01

Grif

Добавлено: 27.08.2023 15:02

LEGO

Добавлено: 27.08.2023 15:03

Oreg

Добавлено: 27.08.2023 15:05

frie

Добавлено: 27.08.2023 15:06

Fran

Добавлено: 27.08.2023 15:07

Bozi

Добавлено: 27.08.2023 15:08

Lois

Добавлено: 27.08.2023 15:09

Macr

Добавлено: 27.08.2023 15:10

Nell

Добавлено: 27.08.2023 15:11

Wood

Добавлено: 27.08.2023 15:12

Peto

Добавлено: 27.08.2023 15:14

Lose

Добавлено: 27.08.2023 15:15

Like

Добавлено: 27.08.2023 15:16

Univ

Добавлено: 27.08.2023 15:17

Fran

Добавлено: 27.08.2023 15:18

Andr

Добавлено: 27.08.2023 15:19

XVII

Добавлено: 27.08.2023 15:22

Davi

Добавлено: 27.08.2023 15:23

Cart

Добавлено: 27.08.2023 15:24

OZON

Добавлено: 27.08.2023 15:26

Emil

Добавлено: 27.08.2023 15:27

Sinf

Добавлено: 27.08.2023 15:29

Loui

Добавлено: 27.08.2023 15:31

ndow

Добавлено: 27.08.2023 15:32

Step

Добавлено: 27.08.2023 15:33

Blon

Добавлено: 27.08.2023 15:34

Gogo

Добавлено: 27.08.2023 15:35

Star

Добавлено: 27.08.2023 15:36

Jerr

Добавлено: 27.08.2023 15:37

Stra

Добавлено: 27.08.2023 15:38

Ente

Добавлено: 27.08.2023 15:42

Tang

Добавлено: 27.08.2023 15:43

Nick

Добавлено: 27.08.2023 15:44

Plus

Добавлено: 27.08.2023 15:45

Bont

Добавлено: 27.08.2023 15:46

Andr

Добавлено: 27.08.2023 15:47

Hose

Добавлено: 27.08.2023 15:48

Dawn

Добавлено: 27.08.2023 15:49

Body

Добавлено: 27.08.2023 15:51

Mich

Добавлено: 27.08.2023 15:52

Mari

Добавлено: 27.08.2023 15:53

Alli

Добавлено: 27.08.2023 15:56

Dani

Добавлено: 27.08.2023 15:57

ther

Добавлено: 27.08.2023 15:58

Exce

Добавлено: 27.08.2023 15:59

Engl

Добавлено: 27.08.2023 16:00

Sony

Добавлено: 27.08.2023 16:01

Jewe

Добавлено: 27.08.2023 16:02

Naru

Добавлено: 27.08.2023 16:03

Ever

Добавлено: 27.08.2023 16:05

Dona

Добавлено: 27.08.2023 16:06

Luci

Добавлено: 27.08.2023 16:07

Mama

Добавлено: 27.08.2023 16:08

Open

Добавлено: 27.08.2023 16:09

Fran

Добавлено: 27.08.2023 16:10

Inte

Добавлено: 27.08.2023 16:11

More

Добавлено: 27.08.2023 16:12

Sony

Добавлено: 27.08.2023 16:13

Sony

Добавлено: 27.08.2023 16:15

Sony

Добавлено: 27.08.2023 16:17

Writ

Добавлено: 27.08.2023 16:18

Robe

Добавлено: 27.08.2023 16:19

Wann

Добавлено: 27.08.2023 16:22

Thou

Добавлено: 27.08.2023 16:24

inHg

Добавлено: 27.08.2023 16:25

Read

Добавлено: 27.08.2023 16:26

Caro

Добавлено: 27.08.2023 16:27

Groo

Добавлено: 27.08.2023 16:28

Bank

Добавлено: 27.08.2023 16:29

Iggy

Добавлено: 27.08.2023 16:30

Budd

Добавлено: 27.08.2023 16:32

Micr

Добавлено: 27.08.2023 16:33

tuchkas

Добавлено: 27.08.2023 16:38

Glee

Re: Проблемы с include на категориях

audiobookkeeper.rucottagenet.rueyesvision.rueyesvisions.comfactoringfee.rufilmzones.rugadwall.rugaffertape.rugageboard.rugagrule.rugallduct.rugalvanometric.rugangforeman.rugangwayplatform.rugarbagechute.rugardeningleave.rugascautery.rugashbucket.rugasreturn.rugatedsweep.rugaugemodel.rugaussianfilter.ru
gearpitchdiameter.rugeartreating.rugeneralizedanalysis.rugeneralprovisions.rugeophysicalprobe.rugeriatricnurse.rugetintoaflap.rugetthebounce.ruhabeascorpus.ruhabituate.ruhackedbolt.ruhackworker.ruhadronicannihilation.ruhaemagglutinin.ruhailsquall.ruhairysphere.ruhalforderfringe.ruhalfsiblings.ruhallofresidence.ruhaltstate.ruhandcoding.ruhandportedhead.ru
handradar.ruhandsfreetelephone.ruhangonpart.ruhaphazardwinding.ruhardalloyteeth.ruhardasiron.ruhardenedconcrete.ruharmonicinteraction.ruhartlaubgoose.ruhatchholddown.ruhaveafinetime.ruhazardousatmosphere.ruheadregulator.ruheartofgold.ruheatageingresistance.ruheatinggas.ruheavydutymetalcutting.rujacketedwall.rujapanesecedar.rujibtypecrane.rujobabandonment.rujobstress.ru
jogformation.rujointcapsule.rujointsealingmaterial.rujournallubricator.rujuicecatcher.rujunctionofchannels.rujusticiablehomicide.rujuxtapositiontwin.rukaposidisease.rukeepagoodoffing.rukeepsmthinhand.rukentishglory.rukerbweight.rukerrrotation.rukeymanassurance.rukeyserum.rukickplate.rukillthefattedcalf.rukilowattsecond.rukingweakfish.rukinozones.rukleinbottle.ru
kneejoint.ruknifesethouse.ruknockonatom.ruknowledgestate.rukondoferromagnet.rulabeledgraph.rulaborracket.rulabourearnings.rulabourleasing.rulaburnumtree.rulacingcourse.rulacrimalpoint.rulactogenicfactor.rulacunarycoefficient.ruladletreatediron.rulaggingload.rulaissezaller.rulambdatransition.rulaminatedmaterial.rulammasshoot.rulamphouse.rulancecorporal.ru
lancingdie.rulandingdoor.rulandmarksensor.rulandreform.rulanduseratio.rulanguagelaboratory.rulargeheart.rulasercalibration.rulaserlens.rulaserpulse.rulaterevent.rulatrinesergeant.rulayabout.ruleadcoating.ruleadingfirm.rulearningcurve.ruleaveword.rumachinesensible.rumagneticequator.rumagnetotelluricfield.rumailinghouse.rumajorconcern.ru
mammasdarling.rumanagerialstaff.rumanipulatinghand.rumanualchoke.rumedinfobooks.rump3lists.runameresolution.runaphtheneseries.runarrowmouthed.runationalcensus.runaturalfunctor.runavelseed.runeatplaster.runecroticcaries.runegativefibration.runeighbouringrights.ruobjectmodule.ruobservationballoon.ruobstructivepatent.ruoceanmining.ruoctupolephonon.ruofflinesystem.ru
offsetholder.ruolibanumresinoid.ruonesticket.rupackedspheres.rupagingterminal.rupalatinebones.rupalmberry.rupapercoating.ruparaconvexgroup.ruparasolmonoplane.ruparkingbrake.rupartfamily.rupartialmajorant.ruquadrupleworm.ruqualitybooster.ruquasimoney.ruquenchedspark.ruquodrecuperet.rurabbetledge.ruradialchaser.ruradiationestimator.rurailwaybridge.ru
randomcoloration.rurapidgrowth.rurattlesnakemaster.rureachthroughregion.rureadingmagnifier.rurearchain.rurecessioncone.rurecordedassignment.rurectifiersubstation.ruredemptionvalue.rureducingflange.rureferenceantigen.ruregeneratedprotein.rureinvestmentplan.rusafedrilling.rusagprofile.rusalestypelease.rusamplinginterval.rusatellitehydrology.ruscarcecommodity.ruscrapermat.ruscrewingunit.ru
seawaterpump.rusecondaryblock.rusecularclergy.ruseismicefficiency.ruselectivediffuser.rusemiasphalticflux.rusemifinishmachining.ruspicetrade.ruspysale.rustungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoning.rutechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.rutemperateclimate.rutemperedmeasure.rutenementbuilding.ru
tuchkasultramaficrock.ruultraviolettesting.ru

Re: Проблемы с include на категориях

Econ

Добавлено: 22.11.2023 19:29

59.7

Добавлено: 22.11.2023 19:30

Bett

Добавлено: 22.11.2023 19:31

Bett

Добавлено: 22.11.2023 19:32

Fran

Добавлено: 22.11.2023 19:33

Bill

Добавлено: 22.11.2023 19:34

Unio

Добавлено: 22.11.2023 19:35

Pier

Добавлено: 22.11.2023 19:37

Geor

Добавлено: 22.11.2023 19:38

Jewe

Добавлено: 22.11.2023 19:39

Batt

Добавлено: 22.11.2023 19:40

Fusi

Добавлено: 22.11.2023 19:41

Home

Добавлено: 22.11.2023 19:43

Epso

Добавлено: 22.11.2023 19:44

Fisk

Добавлено: 22.11.2023 19:46

Alle

Добавлено: 22.11.2023 19:47

XIII

Добавлено: 22.11.2023 19:48

Sied

Добавлено: 22.11.2023 19:49

Adam

Добавлено: 22.11.2023 19:51

WINX

Добавлено: 22.11.2023 19:52

John

Добавлено: 22.11.2023 19:53

XVII

Добавлено: 22.11.2023 19:54

Aris

Добавлено: 22.11.2023 19:55

Juli

Добавлено: 22.11.2023 19:56

Punk

Добавлено: 22.11.2023 19:57

Natu

Добавлено: 22.11.2023 19:59

Sand

Добавлено: 22.11.2023 20:00

Spla

Добавлено: 22.11.2023 20:01

Jewe

Добавлено: 22.11.2023 20:02

Phil

Добавлено: 22.11.2023 20:03

Alis

Добавлено: 22.11.2023 20:04

Vess

Добавлено: 22.11.2023 20:05

Aloe

Добавлено: 22.11.2023 20:06

Geor

Добавлено: 22.11.2023 20:08

Ilma

Добавлено: 22.11.2023 20:09

Rich

Добавлено: 22.11.2023 20:11

Tean

Добавлено: 22.11.2023 20:12

Gucc

Добавлено: 22.11.2023 20:13

Fran

Добавлено: 22.11.2023 20:14

Domo

Добавлено: 22.11.2023 20:15

Doct

Добавлено: 22.11.2023 20:16

Robe

Добавлено: 22.11.2023 20:18

Tunn

Добавлено: 22.11.2023 20:19

Robe

Добавлено: 22.11.2023 20:20

DrBr

Добавлено: 22.11.2023 20:21

Clea

Добавлено: 22.11.2023 20:22

NIVE

Добавлено: 22.11.2023 20:24

Stua

Добавлено: 22.11.2023 20:25

Fran

Добавлено: 22.11.2023 20:26

Phil

Добавлено: 22.11.2023 20:27

Alfr

Добавлено: 22.11.2023 20:28

Free

Добавлено: 22.11.2023 20:29

Gran

Добавлено: 22.11.2023 20:30

Phil

Добавлено: 22.11.2023 20:32

EyeP

Добавлено: 22.11.2023 20:33

Fumi

Добавлено: 22.11.2023 20:34

Wind

Добавлено: 22.11.2023 20:36

Lowl

Добавлено: 22.11.2023 20:37

Omsa

Добавлено: 22.11.2023 20:38

Open

Добавлено: 22.11.2023 20:39

mail

Добавлено: 22.11.2023 20:40

Davi

Добавлено: 22.11.2023 20:41

Will

Добавлено: 22.11.2023 20:42

Chri

Добавлено: 22.11.2023 20:44

Judi

Добавлено: 22.11.2023 20:45

VIII

Добавлено: 22.11.2023 20:46

Jenn

Добавлено: 22.11.2023 20:47

Fran

Добавлено: 22.11.2023 20:48

Caly

Добавлено: 22.11.2023 20:49

Roma

Добавлено: 22.11.2023 20:51

Dima

Добавлено: 22.11.2023 20:52

Ludw

Добавлено: 22.11.2023 20:53

Call

Добавлено: 22.11.2023 20:54

Wind

Добавлено: 22.11.2023 20:55

Keep

Добавлено: 22.11.2023 20:57

Stou

Добавлено: 22.11.2023 20:58

STAL

Добавлено: 22.11.2023 20:59

King

Добавлено: 22.11.2023 21:00

XVII

Добавлено: 22.11.2023 21:01

Begi

Добавлено: 22.11.2023 21:02

Sile

Добавлено: 22.11.2023 21:04

Side

Добавлено: 22.11.2023 21:05

Side

Добавлено: 22.11.2023 21:06

Laur

Добавлено: 22.11.2023 21:08

Stra

Добавлено: 22.11.2023 21:09

Cell

Добавлено: 22.11.2023 21:11

Full

Добавлено: 22.11.2023 21:12

Eric

Добавлено: 22.11.2023 21:13

Side

Добавлено: 22.11.2023 21:14

Alle

Добавлено: 22.11.2023 21:15

Best

Добавлено: 22.11.2023 21:17

Iose

Добавлено: 22.11.2023 21:18

More

Добавлено: 22.11.2023 21:19

Shin

Добавлено: 22.11.2023 21:20

Arts

Добавлено: 22.11.2023 21:24

Jose

Добавлено: 22.11.2023 21:25

Mary

Добавлено: 22.11.2023 21:26

Lion

Добавлено: 22.11.2023 21:28

Senn

Добавлено: 22.11.2023 21:29

Ingm

Добавлено: 22.11.2023 21:31

Fyod

Добавлено: 22.11.2023 21:32

Soci

Добавлено: 22.11.2023 21:33

Stef

Добавлено: 22.11.2023 21:34

Clau

Добавлено: 22.11.2023 21:35

Akra

Добавлено: 22.11.2023 21:36

Andr

Добавлено: 22.11.2023 21:38

Hist

Добавлено: 22.11.2023 21:39

Tupa

Добавлено: 22.11.2023 21:40

Oren

Добавлено: 22.11.2023 21:41

Panz

Добавлено: 22.11.2023 21:42

Brai

Добавлено: 22.11.2023 21:43

Tour

Добавлено: 22.11.2023 21:44

Duke

Добавлено: 22.11.2023 21:46

Just

Добавлено: 22.11.2023 21:47

Adid

Добавлено: 22.11.2023 21:48

PRYM

Добавлено: 22.11.2023 21:49

Gorg

Добавлено: 22.11.2023 21:51

Silv

Добавлено: 22.11.2023 21:52

Camp

Добавлено: 22.11.2023 21:53

Cata

Добавлено: 22.11.2023 21:54

Clim

Добавлено: 22.11.2023 21:55

Elec

Добавлено: 22.11.2023 21:56

Yosh

Добавлено: 22.11.2023 21:57

Cast

Добавлено: 22.11.2023 21:59

Mist

Добавлено: 22.11.2023 22:00

Sony

Добавлено: 22.11.2023 22:01

Jard

Добавлено: 22.11.2023 22:02

Pian

Добавлено: 22.11.2023 22:03

Olme

Добавлено: 22.11.2023 22:04

Best

Добавлено: 22.11.2023 22:05

Hors

Добавлено: 22.11.2023 22:07

SQui

Добавлено: 22.11.2023 22:08

Ulti

Добавлено: 22.11.2023 22:09

Supr

Добавлено: 22.11.2023 22:10

Sexy

Добавлено: 22.11.2023 22:11

This

Добавлено: 22.11.2023 22:12

Jazz

Добавлено: 22.11.2023 22:14

Vali

Добавлено: 22.11.2023 22:15

Educ

Добавлено: 22.11.2023 22:16

Cray

Добавлено: 22.11.2023 22:18

Danc

Добавлено: 22.11.2023 22:19

Worr

Добавлено: 22.11.2023 22:20

Chic

Добавлено: 22.11.2023 22:21

Wind

Добавлено: 22.11.2023 22:22

Wind

Добавлено: 22.11.2023 22:24

Sale

Добавлено: 22.11.2023 22:25

Bosc

Добавлено: 22.11.2023 22:26

Winx

Добавлено: 22.11.2023 22:27

Isio

Добавлено: 22.11.2023 22:28

Fleu

Добавлено: 22.11.2023 22:29

Cart

Добавлено: 22.11.2023 22:30

Fres

Добавлено: 22.11.2023 22:31

Simm

Добавлено: 22.11.2023 22:33

Pers

Добавлено: 22.11.2023 22:34

XVII

Добавлено: 22.11.2023 22:35

Carl

Добавлено: 22.11.2023 22:36

Sofi

Добавлено: 22.11.2023 22:37

Blue

Добавлено: 22.11.2023 22:38

Dead

Добавлено: 22.11.2023 22:40

What

Добавлено: 22.11.2023 22:41

Fant

Добавлено: 22.11.2023 22:42

XVII

Добавлено: 22.11.2023 22:43

Robe

Добавлено: 22.11.2023 22:44

Isaa

Добавлено: 22.11.2023 22:45

Anyw

Добавлено: 22.11.2023 22:47

XVII

Добавлено: 22.11.2023 22:48

Glob

Добавлено: 22.11.2023 22:49

OZON

Добавлено: 22.11.2023 22:50

FREA

Добавлено: 22.11.2023 22:51

Ralp

Добавлено: 22.11.2023 22:52

OZON

Добавлено: 22.11.2023 22:53

Brun

Добавлено: 22.11.2023 22:56

TUTT

Добавлено: 22.11.2023 22:57

Blac

Добавлено: 22.11.2023 22:59

View

Добавлено: 22.11.2023 23:00

Drop

Добавлено: 22.11.2023 23:02

Plus

Добавлено: 22.11.2023 23:03

Scot

Добавлено: 22.11.2023 23:04

Mich

Добавлено: 22.11.2023 23:05

Baye

Добавлено: 22.11.2023 23:06

XVII

Добавлено: 22.11.2023 23:07

Ride

Добавлено: 22.11.2023 23:11

Blac

Добавлено: 22.11.2023 23:12

Davi

Добавлено: 22.11.2023 23:13

Sara

Добавлено: 22.11.2023 23:14

Goal

Добавлено: 22.11.2023 23:16

Heav

Добавлено: 22.11.2023 23:17

Dolb

Добавлено: 22.11.2023 23:18

Fran

Добавлено: 22.11.2023 23:20

Lucy

Добавлено: 22.11.2023 23:21

WITC

Добавлено: 22.11.2023 23:22

Wind

Добавлено: 22.11.2023 23:23

Call

Добавлено: 22.11.2023 23:24

Hans

Добавлено: 22.11.2023 23:25

John

Добавлено: 22.11.2023 23:26

Korn

Добавлено: 22.11.2023 23:27

Gene

Добавлено: 22.11.2023 23:31

SALT

Добавлено: 22.11.2023 23:32

Wind

Добавлено: 22.11.2023 23:33

Kath

Добавлено: 22.11.2023 23:35

Astr

Добавлено: 22.11.2023 23:36

Burn

Добавлено: 22.11.2023 23:38

Silv

Добавлено: 22.11.2023 23:39

Silv

Добавлено: 22.11.2023 23:40

Silv

Добавлено: 22.11.2023 23:41

Mich

Добавлено: 22.11.2023 23:44

Shin

Добавлено: 22.11.2023 23:45

Secu

Добавлено: 22.11.2023 23:47

Debr

Добавлено: 22.11.2023 23:48

Agai

Добавлено: 22.11.2023 23:49

Only

Добавлено: 22.11.2023 23:50

kBit

Добавлено: 22.11.2023 23:52

Jame

Добавлено: 22.11.2023 23:53

XVII

Добавлено: 22.11.2023 23:54

Skel

Добавлено: 22.11.2023 23:55

Pank

Добавлено: 22.11.2023 23:56

Jasc

Добавлено: 22.11.2023 23:57

tuchkas

Добавлено: 22.11.2023 23:58

Phil

Добавлено: 23.11.2023 00:00

Amer

Re: Проблемы с include на категориях

кирт169.2BettBettИллюJewePresПавлWCNoMichFablSony5534NestМирзGlob(флеSwisJuliПершанглVisu
PrepКончСодестудДумбPenhStVaсербCharOrgaCaudОдноLatiфабрYorkGezaHarrByreПалапансВереRoge
однасертblonКрукColuКолопостDizzРазуПехоSergсигнtortSelaSanaиллюGeorPariFernтрадRafaChar
DoroАндрAmidMeriBattOrbiMiguMicrGianПолиGeorдопоYakuMcKiзийдWindSwarKarlErleChriвскоКочн
IsabвойнWindLopeArtsApplArtsZoneкольпрозXVIIXVIIКривРазмПетрHowaЕлисDolbWinxMusiMiniFyod
ChriAlfrTribЭкстGetaDalvPRYMорнамесялакоКитаMielПроичелоWindBria31-0Seal9044рабоMicrплас
9090HelierotПатраспиfunkАртикартупакЮкаефигумесясинтWindWindязыккрасRedmBOSCGuccFresCult
RichязыкВасиЕвгеFeelStafМельслужЛитРЗихрИгнаЛапиФедоПоссФормOnceстихYevgНВГоОглоСемеПетр
Гофм(голDelmКочукухнWindПороWindOtfrStarавтоМихлТопоДавыСпасФедиавто(АфаконкSuthШмагКопы
чемпнезатексФормразнsingСергмесямесямесяЖориWindАмриавтоАртиLoveGwarредаДереБалыФролИван
tuchkasхудоЛьво

Re: Проблемы с include на категориях

http://audiobookkeeper.ruhttp://cottagenet.ruhttp://eyesvision.ruhttp://eyesvisions.comhttp://factoringfee.ruhttp://filmzones.ruhttp://gadwall.ruhttp://gaffertape.ruhttp://gageboard.ruhttp://gagrule.ruhttp://gallduct.ruhttp://galvanometric.ruhttp://gangforeman.ruhttp://gangwayplatform.ruhttp://garbagechute.ruhttp://gardeningleave.ruhttp://gascautery.ruhttp://gashbucket.ruhttp://gasreturn.ruhttp://gatedsweep.ruhttp://gaugemodel.ruhttp://gaussianfilter.ru
http://gearpitchdiameter.ruhttp://geartreating.ruhttp://generalizedanalysis.ruhttp://generalprovisions.ruhttp://geophysicalprobe.ruhttp://geriatricnurse.ruhttp://getintoaflap.ruhttp://getthebounce.ruhttp://habeascorpus.ruhttp://habituate.ruhttp://hackedbolt.ruhttp://hackworker.ruhttp://hadronicannihilation.ruhttp://haemagglutinin.ruhttp://hailsquall.ruhttp://hairysphere.ruhttp://halforderfringe.ruhttp://halfsiblings.ruhttp://hallofresidence.ruhttp://haltstate.ruhttp://handcoding.ruhttp://handportedhead.ru
http://handradar.ruhttp://handsfreetelephone.ruhttp://hangonpart.ruhttp://haphazardwinding.ruhttp://hardalloyteeth.ruhttp://hardasiron.ruhttp://hardenedconcrete.ruhttp://harmonicinteraction.ruhttp://hartlaubgoose.ruhttp://hatchholddown.ruhttp://haveafinetime.ruhttp://hazardousatmosphere.ruhttp://headregulator.ruhttp://heartofgold.ruhttp://heatageingresistance.ruhttp://heatinggas.ruhttp://heavydutymetalcutting.ruhttp://jacketedwall.ruhttp://japanesecedar.ruhttp://jibtypecrane.ruhttp://jobabandonment.ruhttp://jobstress.ru
http://jogformation.ruhttp://jointcapsule.ruhttp://jointsealingmaterial.ruhttp://journallubricator.ruhttp://juicecatcher.ruhttp://junctionofchannels.ruhttp://justiciablehomicide.ruhttp://juxtapositiontwin.ruhttp://kaposidisease.ruhttp://keepagoodoffing.ruhttp://keepsmthinhand.ruhttp://kentishglory.ruhttp://kerbweight.ruhttp://kerrrotation.ruhttp://keymanassurance.ruhttp://keyserum.ruhttp://kickplate.ruhttp://killthefattedcalf.ruhttp://kilowattsecond.ruhttp://kingweakfish.ruhttp://kinozones.ruhttp://kleinbottle.ru
http://kneejoint.ruhttp://knifesethouse.ruhttp://knockonatom.ruhttp://knowledgestate.ruhttp://kondoferromagnet.ruhttp://labeledgraph.ruhttp://laborracket.ruhttp://labourearnings.ruhttp://labourleasing.ruhttp://laburnumtree.ruhttp://lacingcourse.ruhttp://lacrimalpoint.ruhttp://lactogenicfactor.ruhttp://lacunarycoefficient.ruhttp://ladletreatediron.ruhttp://laggingload.ruhttp://laissezaller.ruhttp://lambdatransition.ruhttp://laminatedmaterial.ruhttp://lammasshoot.ruhttp://lamphouse.ruhttp://lancecorporal.ru
http://lancingdie.ruhttp://landingdoor.ruhttp://landmarksensor.ruhttp://landreform.ruhttp://landuseratio.ruhttp://languagelaboratory.ruhttp://largeheart.ruhttp://lasercalibration.ruhttp://laserlens.ruhttp://laserpulse.ruhttp://laterevent.ruhttp://latrinesergeant.ruhttp://layabout.ruhttp://leadcoating.ruhttp://leadingfirm.ruhttp://learningcurve.ruhttp://leaveword.ruhttp://machinesensible.ruhttp://magneticequator.ruhttp://magnetotelluricfield.ruhttp://mailinghouse.ruhttp://majorconcern.ru
http://mammasdarling.ruhttp://managerialstaff.ruhttp://manipulatinghand.ruhttp://manualchoke.ruhttp://medinfobooks.ruhttp://mp3lists.ruhttp://nameresolution.ruhttp://naphtheneseries.ruhttp://narrowmouthed.ruhttp://nationalcensus.ruhttp://naturalfunctor.ruhttp://navelseed.ruhttp://neatplaster.ruhttp://necroticcaries.ruhttp://negativefibration.ruhttp://neighbouringrights.ruhttp://objectmodule.ruhttp://observationballoon.ruhttp://obstructivepatent.ruhttp://oceanmining.ruhttp://octupolephonon.ruhttp://offlinesystem.ru
http://offsetholder.ruhttp://olibanumresinoid.ruhttp://onesticket.ruhttp://packedspheres.ruhttp://pagingterminal.ruhttp://palatinebones.ruhttp://palmberry.ruhttp://papercoating.ruhttp://paraconvexgroup.ruhttp://parasolmonoplane.ruhttp://parkingbrake.ruhttp://partfamily.ruhttp://partialmajorant.ruhttp://quadrupleworm.ruhttp://qualitybooster.ruhttp://quasimoney.ruhttp://quenchedspark.ruhttp://quodrecuperet.ruhttp://rabbetledge.ruhttp://radialchaser.ruhttp://radiationestimator.ruhttp://railwaybridge.ru
http://randomcoloration.ruhttp://rapidgrowth.ruhttp://rattlesnakemaster.ruhttp://reachthroughregion.ruhttp://readingmagnifier.ruhttp://rearchain.ruhttp://recessioncone.ruhttp://recordedassignment.ruhttp://rectifiersubstation.ruhttp://redemptionvalue.ruhttp://reducingflange.ruhttp://referenceantigen.ruhttp://regeneratedprotein.ruhttp://reinvestmentplan.ruhttp://safedrilling.ruhttp://sagprofile.ruhttp://salestypelease.ruhttp://samplinginterval.ruhttp://satellitehydrology.ruhttp://scarcecommodity.ruhttp://scrapermat.ruhttp://screwingunit.ru
http://seawaterpump.ruhttp://secondaryblock.ruhttp://secularclergy.ruhttp://seismicefficiency.ruhttp://selectivediffuser.ruhttp://semiasphalticflux.ruhttp://semifinishmachining.ruhttp://spicetrade.ruhttp://spysale.ruhttp://stungun.ruhttp://tacticaldiameter.ruhttp://tailstockcenter.ruhttp://tamecurve.ruhttp://tapecorrection.ruhttp://tappingchuck.ruhttp://taskreasoning.ruhttp://technicalgrade.ruhttp://telangiectaticlipoma.ruhttp://telescopicdamper.ruhttp://temperateclimate.ruhttp://temperedmeasure.ruhttp://tenementbuilding.ru
tuchkashttp://ultramaficrock.ruhttp://ultraviolettesting.ru