Ciao, e' gia' da diversi giorni che non riesco ad accedere al forum 'chiacchere'
appena lo seleziono ecco cosa mi succede ....
Mi esce questo codice.

Sono sicuro che e' un problema del mio browser(I.E 6.0) , ma come fissarlo ???
ho forse un virus ???


<?php
// ----------------------------------------------------------------------
// MD-Pro Content Management System
// Copyright (C) 2003 by the MaxDev Development Team.
// (Link: http://www.maxdev.com/)http://www.maxdev.com/
// ----------------------------------------------------------------------
// Based on:
// eNvolution Content Management System - www.envolution.com
// Postnuke Content Management System - www.postnuke.com
// PHP-NUKE Web Portal System - http://phpnuke.org/
// Thatware - http://thatware.org/
// ----------------------------------------------------------------------
// LICENSE and CREDITS
// This program is free software and it's released under the terms of the
// GNU General Public License(GPL) - (Link: http://www.gnu.org/licenses/gpl.html)http://www.gnu.org/licenses/gpl.html
// Please READ carefully the Docs/License.txt file for further details
// Please READ the Docs/credits.txt file for complete credits list
// ----------------------------------------------------------------------
// Original Author of this file: Francisco Burzi
// Purpose of this file: Directs to the start page as defined in config.php
// ----------------------------------------------------------------------

// include base api
include_once 'includes/pnAPI.php';

// start PN
pnInit();

// Get variables
list($module,
$func,
$op,
$name,
$file,
$type) = pnVarCleanFromInput('module',
'func',
'op',
'name',
'file',
'type');

// Defaults for variables
if (isset($catid)) {
pnVarCleanFromInput('catid');
}
// Browser check
$client = $GLOBALS['client'];
if( ($client->browser_is("ie5.5+")) && ($client->property('platform') == "win") ) {
$ie_ok = 1;
} else {
$ie_ok = 0;
}

// check requested module and set to start module if not present
if (empty($name)) {
$name = pnConfigGetVar('startpage');
// fixed for the new style of loading modules and set start page for them [class007]
if (empty($module)) {
$module = $name;
}
}

// get module information
$modinfo = pnModGetInfo(pnModGetIDFromName($module));

if ($modinfo['type'] == 2)
{
// New-new style of loading modules
if (empty($type)) {
$type = 'user';
}
if (empty($func)) {
$func = 'main';
}

// it should be $module not $name [class007]
if (pnModAvailable($module)) {
if (pnModLoad($module, $type)) {
// Run the function
$return = pnModFunc($module, $type, $func);
} else {
// $return = false;
// Failed to load the module
pnRedirect(pnModURL('Errore', 'admin', 'main', array('op' => 'noexist','modname' => $name)));
break;
}
} else {
// $return = false;
// Failed to load the module
pnRedirect(pnModURL('Errore', 'admin', 'main', array('op' => 'noexist','modname' => $name)));
break;
}

if ((empty($return)) || ($return == false)) {
// Failed to load the module
$output = new pnHTML();
$output->StartPage();
$output->Text('Failed to load module ' . $module .' ( At function: "'.$func.'" )');
$output->EndPage();
$output->PrintPage();
exit;
} elseif (strlen($return) > 1) {
// Text
// Begin original functions
// $output = new pnHTML();
// $output->StartPage();
// $output->SetInputMode(_PNH_VERBATIMINPUT);
// $output->Text($return);
// $output->SetInputMode(_PNH_PARSEINPUT);
// $output->EndPage();
// $output->PrintPage();
// End original functions
// Begin expanded pnHTML for RteMulti
// if ((pnModGetVar('RteMulti','RteEnable')==1)and(pnMod Available('RteMulti'))and($ie_ok)) {
if ((pnModGetVar('rtemulti','RteEnable')==1)and(pnMod Available('RteMulti'))and($ie_ok)) {
include_once( "modules/RteMulti/pnRTEHTML.php" );
$output = new pnRTEHTML();
$my_content = $output->GetOutput();
// if (!pnModAPILoad('rtemulti', 'user')) {
if (!pnModAPILoad('RteMulti', 'user')) {
$output->Text(_LOADFAILED);
return $output->GetOutput();
}
} else {
$output = new pnHTML();
$output->SetInputMode(_PNH_VERBATIMINPUT);
// $output->Text($return);

$my_content = $output->GetOutput();
$output->SetInputMode(_PNH_PARSEINPUT);
// include ("footer.php");

}