| 
 搜尋:$show['sticky'] = false;
 在後面添加:
 $show['globalsticky'] = false;
 
 newthread.php
 搜尋:
 // get special data templates from the datastore
 $specialtemplates = array(
 'smiliecache',
 'bbcodecache',
 'attachmentcache'
 );
 替換為:
 // get special data templates from the datastore
 $specialtemplates = array(
 'smiliecache',
 'bbcodecache',
 'attachmentcache',
 'globalstickyids'
 );
 
 搜尋:
 $newpost['stickunstick'] = $_POST['stickunstick'];
 在後面添加:
 $newpost['globalstickunstick'] = $_POST['globalstickunstick'];
 |