News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Bug reports and Status

Started by Orstio, April 23, 2006, 08:19:34 AM

Previous topic - Next topic

Orstio

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.

Orstio

Bug:

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

Fix:

Find in smf.php:


$message = substr($message, 0, -1);


Change it to this:


    if (substr($message, strlen($message), -1)=='"')
     $message = substr($message, 0, -1);


Thanks to btbio for reporting this.  :)

Orstio

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:

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


Replace with:

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

Advertisement: