PDA

View Full Version : Mistakes in the current upgrade file.


venomx
04-17-2005, 05:57 PM
Under:
UPGRADE FROM VERSION 3.4.2 TO VERSION 3.4.3

It has one edit. The says In the same file, find:
And nothing is there. Is there the only one file edit?

Under:
UPGRADE FROM VERSION 3.4.1 TO VERSION 3.4.2

It says to find

if ($post[userid]==$bbuserinfo[userid] AND $postadmin!=1 AND ($post[warning_level]>0)

Which is really


if ($post[userid]==$bbuserinfo[userid] AND $postadmin!=1 AND $post[warning_level]>0)


and it says

Edit template warn_viewtype_top and find:

<td class="tcat" colspan="6">

Replace that with:

<td class="tcat" colspan="8">

<td class="thead">Post-related</td>

Below that, add:

<td class="thead">Alertable</td>
<td class="thead">Alert Comment</td>


Which should say


Edit template warn_viewtype_top and find:

<td class="tcat" colspan="6">

Replace that with:

<td class="tcat" colspan="8">

Then find:

<td class="thead">Post-related</td>

Below that, add:

<td class="thead">Alertable</td>
<td class="thead">Alert Comment</td>

sv1cec
04-17-2005, 06:07 PM
You are obviously right on these, and I wish it was only these. The release of v.3.4.3 was a disaster, too many things I forgot to include. Thank God, I do not think too many people have noticed this release, I didn't send out an update, so that eases the pain!

In any case, please download the latest zip file and do all the other mods found in the upgrade to 3.4.3 version.

Sorry for the inconvenience.

Rgds

venomx
04-17-2005, 06:23 PM
Ok I am lost.. The new one says in newreply.php to find

warn_calculations($warn_type['tid'], $wcomment, $newpostid, $bbuserinfo, $vboptions['warn_automatic_warner'], $alert);

warn_notify($thread1, $thread2, $bbuserinfo, $warnerdata['email'], $warnerdata['username'], $vboptions['warn_automatic_warner'], $warn_type, $level, $wcomment);


While mine is

warn_calculations($warn_type['tid'], $wcomment, $newpostid, $bbuserinfo, $vboptions['warn_automatic_warner'], $warn_opts, $vboptions);

warn_notify($thread1, $thread2, $bbuserinfo, $warnerdata['email'], $warnerdata['username'], $vboptions['warn_automatic_warner'], $warn_type, $level, $vboptions, $wcomment);


Same with editpost.php...

And newthread.php

sv1cec
04-17-2005, 06:46 PM
editpost.php and newthread.php are correctly shown, the one that was wrong was newreply.php.

In every case, you are looking for a warn_calculations without the $alert at the end and you are replacing that with a warn_calculations with the $alert at the end. Same with warn_notify, you look for one without the $alert and replace with the one with the $alert.

Rgds