# grep -iR edit_count *
SV/TitleEditHistory/Listener.php: SV_TitleEditHistory_Install::addColumn('xf_thread','thread_title_edit_count', 'int not null default 0');
SV/TitleEditHistory/Listener.php: SV_TitleEditHistory_Install::renameColumn('xf_thread','edit_count', 'thread_title_edit_count', 'int not null default 0');
SV/TitleEditHistory/EditHistoryHandler/Thread.php: $dw->set('thread_title_edit_count', $dw->get('thread_title_edit_count') + 1);
SV/TitleEditHistory/EditHistoryHandler/Thread.php: if ($dw->get('thread_title_edit_count'))
SV/TitleEditHistory/XenForo/DataWriter/Discussion/Thread.php: $fields["xf_thread"]['thread_title_edit_count'] = array('type' => self::TYPE_UINT_FORCED, 'default' => 0);
SV/TitleEditHistory/XenForo/DataWriter/Discussion/Thread.php: $this->set('thread_title_edit_count', $this->get('thread_title_edit_count') + 1);
UserEss/Install/Construct.php: $editArray[$contentId]['edit_count'] += 1;
UserEss/Install/Construct.php: $editArray[$contentId] = array('edit_count' => 1, 'edit_date' => $postEdit['edit_date'], 'edit_user_id' => $postEdit['edit_user_id']);
UserEss/Install/Construct.php: $postWriter->set('edit_count', $postWriter->get('edit_count') + $editArray[$postId]['edit_count']);
XenForo/ControllerPublic/EditHistory.php: if (isset($content['edit_count']) && !$content['edit_count'])
XenForo/EditHistoryHandler/Post.php: $dw->set('edit_count', $dw->get('edit_count') + 1);
XenForo/EditHistoryHandler/Post.php: if ($dw->get('edit_count'))
XenForo/Install/Data/MySql.php: edit_count INT UNSIGNED NOT NULL DEFAULT 0,
XenForo/Install/Upgrade/1020010-120a.php: ADD edit_count INT UNSIGNED NOT NULL DEFAULT 0
XenForo/Model/Post.php: $newPost['edit_count'] = 0;
XenForo/DataWriter/DiscussionMessage.php: $fields[$structure['table']]['edit_count'] = array('type' => self::TYPE_UINT_FORCED, 'default' => 0);
XenForo/DataWriter/DiscussionMessage.php: if (!$this->isChanged('edit_count'))
XenForo/DataWriter/DiscussionMessage.php: $this->set('edit_count', $this->get('edit_count') + 1);
XenForo/DataWriter/DiscussionMessage.php: if ($this->isChanged('edit_count') && $this->get('edit_count') == 0)
XenForo/DataWriter/DiscussionMessage.php: && $this->isUpdate() && $this->isChanged('edit_count') && $this->get('edit_count'))
XenForo/Importer/IPBoard.php: 'edit_count' => !empty($post['edit_date']) ? 1 : 0
XenForo/Importer/vBulletin.php: 'edit_count' => !empty($post['editdate']) ? 1 : 0
XenForo/Importer/XenForo.php: 'edit_count',