Author Topic: Bug reports and Status  (Read 19339 times)

Offline Orstio

  • Local Moderator
  • Simple Machines Super Hero
  • *
  • Posts: 15,000
    • Everything Science
Bug reports and Status
« on: April 23, 2006, 08:19:34 AM »
This topic will contain all current bug reports for the current version of the bridge.  It is locked, because it should not be used for "help me" posts, nor to report things that people generally do wrong when installing, nor to post things that are unrelated to the bridge.

I will list the actual bugs reported, and the update the status so that everyone knows.

Thank you to everyone that reports the bugs they find.  :)

The current version is 1.1.7.
« Last Edit: February 02, 2007, 06:50:06 PM by Orstio »
“It would be ugly to watch people poking sticks at a caged rat. It is uglier still to watch rats poking sticks at a caged person.” - Jean Harris

Offline Orstio

  • Local Moderator
  • Simple Machines Super Hero
  • *
  • Posts: 15,000
    • Everything Science
Re: Bug reports and Status
« Reply #1 on: February 20, 2007, 05:52:02 PM »
Bug:

Bridge cuts out the last character of the last URL in PM notification emails.

Fix:

Find in smf.php:

Code: [Select]
$message = substr($message, 0, -1);
Change it to this:

Code: [Select]
    if (substr($message, strlen($message), -1)=='"')
     $message = substr($message, 0, -1);

Thanks to btbio for reporting this.  :)
“It would be ugly to watch people poking sticks at a caged rat. It is uglier still to watch rats poking sticks at a caged person.” - Jean Harris

Offline Orstio

  • Local Moderator
  • Simple Machines Super Hero
  • *
  • Posts: 15,000
    • Everything Science
Re: Bug reports and Status
« Reply #2 on: February 21, 2007, 09:11:39 PM »
Bug:

When SEF is enabled, some buttons submit to pages that return "Unable to load main template".  This may also keep polls from being created.

Fix:

Find in smf.php:

Code: [Select]
$nqsefurl = substr($nonsefurl, 0, strpos($nonsefurl, 'option')) . preg_replace('/(\;)([^=#]*)([#"])/', '$1$2=$2$3', substr($nonsefurl, strpos($nonsefurl, 'option'), strlen($nonsefurl)));

Replace with:

Code: [Select]
$nqsefurl = substr($nonsefurl, 0, strpos($nonsefurl, 'option')) . preg_replace('/(\;)([^=#]*)([\;#"])/', '$1$2=$2$3', substr($nonsefurl, strpos($nonsefurl, 'option'), strlen($nonsefurl)));
“It would be ugly to watch people poking sticks at a caged rat. It is uglier still to watch rats poking sticks at a caged person.” - Jean Harris