Quote:
Originally Posted by ssslippy
|
If you are interested in fixing this, open [forum]/dbtech/eam/eam.php. On line 34 find:
Code:
$static .= '<a href="' . $vbulletin->options['bburl'] . '/content.php/' . $row[$i]['nodeid'] . '/edit">' . $row[$i]['title'] . '</a><br />';
Replace with:
Code:
$static .= '<a href="' . $vbulletin->options['bburl'] . '/content.php?r=' . $row[$i]['nodeid'] . '/edit">' . $row[$i]['title'] . '</a><br />';
Quote:
Also uninstall gives a blank page.
|
To fix, open [forum]/dbtech/eam/install/uninstall.php. On line 6 find:
Code:
$get_widget_id = $vbulletin->db->query_read("
Replace with:
Code:
$get_widget_id = self::$db->query_first("
Sorry about that issue in the uninstaller. Also, not sure why the first code didn't work no matter what the Friendly URL setting was. I know an issue with the CMS friendly URL script that I reported has been fixed for 4.1.12, so once that's out, I'll be able to generate proper CMS links no matter what.
Brad