Как добавить дополнительные поля в форум при создании темы
aleksndr
Extrim
PPK
Код: Выделить всё
[phpBB Debug] PHP Warning: in file [ROOT]/ext/ppk/bb3addfields/core/bb3addfields.php on line 365: sizeof(): Parameter must be an array or an object that implements Countable
globalnoises
PPK
Код: Выделить всё
if(sizeof($this->addfields_count))
globalnoises
PPK
ладно буду обновляться до последней версии. спасибоPPK писал(а):В последней версии расширения нет такого кода на этой строке
globalnoises
gorod90
/ext/ppk/bb3addfields/core/bb3addfields.php
для включения везде, заменить
Код: Выделить всё
if($event['mode'] == 'post' || ($event['mode'] == 'edit' && $event['post_id'] == $event['post_data']['topic_first_post_id']))
Код: Выделить всё
if(1)
Код: Выделить всё
if($event['mode'] == 'post' || ($event['mode'] == 'edit' && $event['post_id'] == $event['post_data']['topic_first_post_id']))
Код: Выделить всё
if($event['mode'] == 'reply' || ($event['mode'] == 'edit' && $event['post_id'] != $event['post_data']['topic_first_post_id']))
PPK