
06-26-2002, 06:27 PM
|
 |
|
|
Join Date: May 2002
Location: Hickory Flat MS 38633
Posts: 364
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Im useing vB2.2.6 and thus for have only run into 2 errors during the install - listed below is how I corrected it for vB2.2.6 :
Quote:
Original Version
admin/index.php
Step 1 of 1 find:
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("User Titles"); ?>
</table>
<a href="usertitle.php?s=<?php echo $session[sessionhash]; ?>&action=add"> Add </a> |
<a href="usertitle.php?s=<?php echo $session[sessionhash]; ?>&action=modify"> Modify </a>
</td></tr>
Just under that add:
<!-- Stars Hack -->
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("User Stars"); ?>
</table>
<a href="stars.php?s=<?php echo $session[sessionhash]; ?>&action=add"> Add </a> |
<a href="stars.php?s=<?php echo $session[sessionhash]; ?>&action=modify"> Modify </a>
</td></tr>
<!-- Stars Hack End -->
Corrected Version
Find In Admin/index.php:
makenavselect("Users");
// ***
Add Below that:
makenavoption("Add","stars.php?action=add","|");
makenavoption("Modify","stars.php?action=modify");
makenavselect("Stars Hack");
// ***
|
and:
Quote:
Original Version
admin/misc.php
Step 3 of 3 find:
maketableheader("Update Users Info</b> - </b>updates user titles<b>","",0);
Replace That With:
// Stars Hack
maketableheader("Update Users Info</b> - </b>updates user titles and stars<b>","",0);
// Stars Hack End
Corrected Version
admin/misc.php
Step 3 of 3 find:
maketableheader("Update User's Titles","",0);
Replace That With:
// Stars Hack
maketableheader("Update User's Titles and Stars","",0);
// Stars Hack End
|
|