vizornin
Постоялец
- Регистрация
- 17 Ноя 2007
- Сообщения
- 50
- Реакции
- 19
Проблема с картинками решинаКартинки пропали
правим файл YourJoomlaInstallation/libraries/joomla/document/html/renderer/head.php
Найти:
Код:
// Generate base tag (need to happen first)
$base = $document->getBase();
if(!empty($base)) {
$strHtml .= $tab.'<base href="'.$document->getBase().'" />'.$lnEnd;
}
Заменить на:
Код:
// Generate base tag (need to happen first)
$base = $document->getBase();
if(!empty($base)) {
$strHtml .= $tab.'<base href="'.JURI::root().'" />'.$lnEnd;
}