
11-29-2008, 10:59 AM
|
|
|
Join Date: Feb 2007
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by ogameclub
I found not 'threadid' includes\class_dm_rssfeed.php in Version 3.8.0 Beta 1.
|
You are not expect to found it there since the installation for 0.5.x is:
Quote:
Originally Posted by readme
3. In file includes\class_dm_rssfeed.php
FIND:
'forumid' => array(TYPE_UINT, REQ_YES, VF_METHOD),
Add this BEFORE:
'threadid' => array(TYPE_UINT, REQ_NO),
'tu_maxtime' => array(TYPE_UINT, REQ_NO),
'tu_reason' => array(TYPE_STR, REQ_NO),
'tu_hs' => array(TYPE_NOHTML, REQ_NO),
'tu_he' => array(TYPE_NOHTML, REQ_NO),
'snta_x_p' => array(TYPE_UINT, REQ_NO),
Then FIND:
case 'thread':
Add this AFTER:
case 'post':
|
|