You are correct, another bug fixed thanks to bouncer18.

In template
home_polloptions find:
Code:
<form action="poll.php" method="post">
Replace it with:
Code:
<form action="$bburl/poll.php" method="post">
Find:
Code:
<a href="poll.php?s=$session[sessionhash]&action=showresults&pollid=$poll[pollid]">
Replace it with:
Code:
<a href="$bburl/poll.php?s=$session[sessionhash]&action=showresults&pollid=$poll[pollid]">
In template
home_pollcomment find:
Code:
<a href="showthread.php?s=$session[sessionhash]&threadid=$poll[threadid]">
Replace it with:
Code:
<a href="$bburl/showthread.php?s=$session[sessionhash]&threadid=$poll[threadid]">
In template
home_pmloggedin find:
Code:
<a href="private.php?s=$session[sessionhash]" title="Open Your Private Messages $inboxname">
Replace it with:
Code:
<a href="$bburl/private.php?s=$session[sessionhash]" title="Open Your Private Messages $inboxname">
I will update the installer now. Let me know if you see any other template bugs. Thanks.