Początkujący
Postów: 120 Ostrzeżeń: 1
Data rejestracji: 12.07.2006 09:59
|
Otóż mam problem taki, że jak edytuje plik theme_config.php by zmienić górne menu, to po zmianie nie mam polskich liter.
Moja strona http://freemobile...
Jak coś daje kod theme_config.php
<?php
if (!defined("IN_REVISION")) { header("Location: ../../index.php"); exit; }
/*--------------------------------------------+
| PHP-Fusion v6 - Content Management System |
|---------------------------------------------|
| author: Nick Jones (Digitanium) ? 2002-2005 |
| web: http://www.php-fusion.co.uk |
| email: |
|---------------------------------------------|
| Released under the terms and conditions of |
| the GNU General Public License (Version 2) |
+--------------------------------------------*/
/*--------------------------------------------+
| Revision Theme for PHP-Fusion v6 |
|---------------------------------------------|
| author: UworldIRC - Riadi ? 2006 |
| web: http://www.uworldirc.com/ |
| email: |
|---------------------------------------------|
| Released under the terms and conditions of |
| the GNU General Public License (Version 2) |
+--------------------------------------------*/
/* PHP Fusion theme default configurations */
$body_text = "#444444";
$body_bg = "#DAE2E3";
$theme_width = 900;
$theme_panels_exclude = array("/forum/");
$theme_panels_width = 170;
// keep the width of the panels the same so it does not compress the tables
$theme_width_r = $theme_panels_width;
$theme_width_l = $theme_panels_width;
/* Revision Theme configurations */
# for support and explanation about these configurations please go to http://www.uworldirc.com/support/revision
// Page Header
$rtHeader['logo_url'] = BASEDIR.'index.php';
$rtHeader['logo_url_title'] = 'Front Page';
$rtHeader['slogan'] = 'insert something funky here ;p';
$rtHeader['rightside_member'] = "Witaj <strong>".$userdata['user_name']."</strong>";
$rtHeader['rightside_guest'] = "Witaj <strong>Gosciu</strong><br>prosze <a href='".BASEDIR."login.php'>zaloguj sie</a> lub <a href='".BASEDIR."register.php'>zarejesrtuj!!</a>";
// Navigation Bar
$rtNavbar->newmenu('Index','Home');
$rtNavbar->submenu('Home', 'Front Page', 'index.php', 1);
$rtNavbar->submenu('Artykuły', 'Artykuły', 'articles.php', 0);
$rtNavbar->newmenu('Download','Download');
$rtNavbar->submenu('Gry', 'Gry', 'http://niedzwiedz.ni.funpic.org/freemobile/infusions/pro_download_panel/download.php?catid=1', 0);
$rtNavbar->submenu('Aplikacje', 'Aplikacje', 'http://niedzwiedz.ni.funpic.org/freemobile/infusions/pro_download_panel/download.php?catid=25', 0);
$rtNavbar->submenu('Galeria tapet', 'Galeria tapet', 'http://niedzwiedz.ni.funpic.org/freemobile/photogallery.php', 0);
$rtNavbar->newmenu('User','user');
$rtNavbar->submenu('Lista userów', 'Members List', 'members.php', 1);
if (iMEMBER) {
$rtNavbar->submenu('Profil', 'View your profile', 'profile.php?lookup='.$userdata['user_id'], 0);
$rtNavbar->submenu('Edit Profile', 'Edit your profile', 'edit_profile.php', 1);
$rtNavbar->submenu('Private Messages', 'View your private messages', 'messages.php', 1);
$rtNavbar->submenu('Logout', 'Logout', 'setuser.php?logout=yes', 0);
} else {
$rtNavbar->submenu('Logowanie', 'Login', 'login.php', 0);
$rtNavbar->submenu('Rejestracja', 'Zarejestruj się za darmo by otrzymać dostep do zasobów strony', 'register.php', 0);
$rtNavbar->submenu('Odzyskaj hasło', 'Odzyskaj hasło', 'lostpassword.php', 0);
}
if ((iADMIN) && ($userdata['user_rights'] != "")) {
$rtNavbar->newmenu('Administration','Administration');
$rtNavbar->submenu('Write a News Item', 'Write a News Item', 'administration/news.php'.$aidlink, 0);
$rtNavbar->submenu('Write an Article', 'Write an Article', 'administration/articles.php'.$aidlink, 1);
$rtNavbar->submenu('Control Panel', 'Control Panel', 'administration/index.php'.$aidlink, 0);
}
?>
|