for info:official patch for php nuke is here
http://www.nukeforums.com/downloads/phpNuke_5.5/
// ========================================================================
cyberpuke
From http://www.nukeforums.com/forums/viewtopic.php?topic=4714&forum=4
Fix - backend.php incorrect code
- /backend.php
// ========================================================================
// ========================================================================
Tom
From http://www.nukeforums.com/forums/viewtopic.php?topic=4734&forum=9
Fix - Missing define("_MONTHDATETIME","<br>%B %d, %G"); from language files.
- /modules/Forum/language/lang-english.php
// ========================================================================
// ========================================================================
Chris au
Hack to better report the sql errors
- line 282 in /includes/sql_layers.php
Replace:
case "MySQL":
$row = mysql_fetch_row($res);
return $row;
break;;
With:
case "MySQL":
if ($row = mysql_fetch_row($res)) {
return $row;
} else {
print (mysql_error());
}
break;;
// ========================================================================
// ========================================================================
Francisco Burzi (fbc@mandrakesoft.com) http://phpnuke.org
Fixes 2 BIG problems with the PHP-Nuke 5.5 AvantGo module.
- /modules/AvantGo/index.php - Removed link that caused AvantGo to load the
entire main page of the site, in addition to the AvantGo pages. ate LOTS of
memory, totaly invalidated the whole reason for having an Avantgo plugin.
- /modules/AvantGo/print.php - removed all tables. Two of them had a defined
width of 640 pixels, and Avantgo (at least version 3.3, what I have on my
Visor) would not render the entire width of the page, thusly chopping off
several words at the end of each line.
// ========================================================================
// ========================================================================
Chatserv
Themes:
- 3D-Fantasy
- Kaput
- NukeNews
- Odyssey
- Odyssey
Fix: Various theme problems and bugs
- /themes/3D-Fantasy/story_home.html
- /themes/3D-Fantasy/story_page.html
- /themes/Kaput/theme.php
- /themes/NukeNews/story_page.html
- /themes/Odyssey/story_home.html
- /themes/Odyssey/story_page.html
// ========================================================================
// ========================================================================
NukeForums
File: /backend.php
Line: 17
Replace:
$result = sql_query("SELECT sid, title FROM ".$prefix."_stories ORDER BY sid DESC limit 10", $dbi);
With:
$result = sql_query("SELECT sid, title FROM $prefix"._stories." ORDER BY sid DESC limit 10", $dbi);
Fix - backend.php incorrect code
- /backend.php
// ========================================================================
Hi Unbekannt, Hi unknown,
thx fuer die Info
thx for the info