mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
- fixed some bugs
- changed attachment handling a bit - tried to remove target tags out of the code - do not add session ids to urls for bots as well as not creating a new session on each page view for them I bet i introduced some bugs too. ;) git-svn-id: file:///svn/phpbb/trunk@6364 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -646,6 +646,7 @@ function get_schema_struct()
|
||||
'topic_id' => array('UINT', 0),
|
||||
'in_message' => array('BOOL', 0),
|
||||
'poster_id' => array('UINT', 0),
|
||||
'is_orphan' => array('BOOL', 1),
|
||||
'physical_filename' => array('VCHAR', ''),
|
||||
'real_filename' => array('VCHAR', ''),
|
||||
'download_count' => array('UINT', 0),
|
||||
@@ -662,7 +663,7 @@ function get_schema_struct()
|
||||
'post_msg_id' => array('INDEX', 'post_msg_id'),
|
||||
'topic_id' => array('INDEX', 'topic_id'),
|
||||
'poster_id' => array('INDEX', 'poster_id'),
|
||||
'filesize' => array('INDEX', 'filesize'),
|
||||
'is_orphan' => array('INDEX', 'is_orphan'),
|
||||
),
|
||||
);
|
||||
|
||||
@@ -1398,8 +1399,8 @@ function get_schema_struct()
|
||||
'code' => array('VCHAR:50', ''),
|
||||
'emotion' => array('VCHAR:50', ''),
|
||||
'smiley_url' => array('VCHAR:50', ''),
|
||||
'smiley_width' => array('TINT:4', 0),
|
||||
'smiley_height' => array('TINT:4', 0),
|
||||
'smiley_width' => array('USINT', 0),
|
||||
'smiley_height' => array('USINT', 0),
|
||||
'smiley_order' => array('UINT', 0),
|
||||
'display_on_posting'=> array('BOOL', 1),
|
||||
),
|
||||
|
Reference in New Issue
Block a user