
09-12-2002, 03:50 PM
|
 |
|
|
Join Date: Oct 2001
Location: London, England.
Posts: 739
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
eeeerrrrmmmm, I don't know which file you have got, but the zip file on the first post does have both of the file edits needed for online.php, here:
Quote:
+-------------------------------------------------------------------------------------------------+
| In admin/index.php, find this code: |
+-------------------------------------------------------------------------------------------------+
// ***
makenavoption("New Posts","../mod/moderate.php?action=posts","<br>");
makenavoption("New Attachments","../mod/moderate.php?action=attachments");
makenavselect("Moderation","<hr>");
// *************************************************
+-------------------------------------------------------------------------------------------------+
+-------------------------------------------------------------------------------------------------+
| Add under: |
+-------------------------------------------------------------------------------------------------+
// *************************************************
// vBstory by Daniel Hollands - http://ofdan.net/
makenavoption("Add Genre","vbstory_admin.php?what=genre&action=add"," |");
makenavoption("Edit Genre","vbstory_admin.php?what=genre&action=edit", "<br>");
makenavoption("Add Story","vbstory_admin.php?what=story&action=add"," |");
makenavoption("Edit Story","vbstory_admin.php?what=story&action=edit", "<br>");
makenavselect("vBstory Options","<hr>");
// /vBstory by Daniel Hollands - http://ofdan.net/
// *************************************************
+-------------------------------------------------------------------------------------------------+
+
+++
+
+-------------------------------------------------------------------------------------------------+
| In online.php, find this code: (Optional) |
+-------------------------------------------------------------------------------------------------+
case 'printthread.php':
$userinfo[activity] = 'printthread';
$blowup = explode('=', $token1);
$threadid = intval($blowup[1]);
$threadids .= ",$threadid";
$userinfo[threadid] = $threadid;
break;
+-------------------------------------------------------------------------------------------------+
+-------------------------------------------------------------------------------------------------+
| Add under: |
+-------------------------------------------------------------------------------------------------+
case 'vbstory.php':
$userinfo[activity] = 'vbstory';
break;
+-------------------------------------------------------------------------------------------------+
+
+++
+
+-------------------------------------------------------------------------------------------------+
| In online.php, find this code: (Optional) |
+-------------------------------------------------------------------------------------------------+
case 'calendar':
$userinfo[where] = "Viewing <a href='calendar.php?s=$session[sessionhash]'>Calendar</a>";
break;
+-------------------------------------------------------------------------------------------------+
+-------------------------------------------------------------------------------------------------+
| Add under: |
+-------------------------------------------------------------------------------------------------+
case 'vbstory':
$userinfo[where] = "Reading an interactive story";
break;
+-------------------------------------------------------------------------------------------------+
|
But thank you anyway
|