Aleks_El_Dia
Ну у меня русифицирована Joomla версия 1.5.14
Funkdoobiest
не помогло (((
что еще можно сделать?
PS самый прикол что я поверх этого шаблона + quickstart закачивал полностью русифицированную Joomla 1.5.14 русской сборки, так что проблема с кодировкой файлов модуля я думаю тут нету. Мне кажется как писал SmokerMan "какой шаблон используете? Если навороченный, на подобие JA и т.д., то возможно в modules.php прописана какая-нибудь регулярка, которая не работает с русскими буквами." что как раз и есть проблема в этой регулярке.
Выкладываю этот сам modules.php
<?php
/*------------------------------------------------------------------------
# JA Beryl for Joomla 1.5.x - Version 1.0 - Licence Owner JA130162
# ------------------------------------------------------------------------
# Copyright (C) 2004-2008 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
# @license - Copyrighted Commercial Software
# Author: J.O.O.M Solutions Co., Ltd
# Websites:
http://www.joomlart.com -
http://www.joomlancers.com# This file may not be redistributed in whole or significant part.
-------------------------------------------------------------------------*/
// no direct access
defined('_JEXEC') or die('Restricted access');
/**
* This is a file to add template specific chrome to module rendering. To use it you would
* set the style attribute for the given module(s) include in your template to use the style
* for each given modChrome function.
*
* eg. To render a module mod_test in the sliders style, you would use the following include:
* <jdoc:include type="module" name="test" style="slider" />
*
* This gives template designers ultimate control over how modules are rendered.
*
* NOTICE: All chrome wrapping methods should be named: modChrome_{STYLE} and take the same
* two arguments.
*/
/*
* Module chrome for rendering the module in a slider
*/
function modChrome_slider($module, &$params, &$attribs)
{
jimport('joomla.html.pane');
// Initialize variables
$sliders = & JPane::getInstance('sliders');
$sliders->startPanel( JText::_( $module->title ), 'module' . $module->id );
echo $module->content;
$sliders->endPanel();
}
/*
* Module chrome that allows for rounded corners by wrapping in nested div tags
*/
function modChrome_jamodule($module, &$params, &$attribs)
{ ?>
<div class="moduletable<?php echo $params->get('moduleclass_sfx'); ?>" id="Mod<?php echo $module->id; ?>">
<?php if ($module->showtitle != 0) : ?>
<h3><?php echo $module->title; ?></h3>
<?php endif; ?>
<div class="ja-box-ct">
<?php echo $module->content; ?>
</div>
</div>
<?php
}
/*
* Module chrome that allows for rounded corners by wrapping in nested div tags
*/
function modChrome_jarounded($module, &$params, &$attribs)
{ ?>
<div class="ja-box-br module<?php echo $params->get('moduleclass_sfx'); ?>">
<div class="ja-box-bl"><div class="ja-box-tr"><div class="ja-box-tl">
<?php if ($module->showtitle != 0) : ?>
<h3><span><?php echo $module->title; ?></span></h3>
<?php endif; ?>
<div class="ja-box-ct clearfix">
<?php echo $module->content; ?>
</div>
</div></div></div></div>
<?php
}
?>