- Affected version
- 2.2.16
This function has this this statement:
Suppose the post position updates from 1 => 2, and it was made visible. This will result in multiple posts with position value of 2.
The newly made visible post will have a position of 2 and the post with a previous position of #1 will also have a position of 2.
PHP:
protected function postMadeVisible()
{
if ($this->isChanged('position'))
{
// if we've updated the position, we need to trust what we had is accurate...
$basePosition = $this->getExistingValue('position');
}
Suppose the post position updates from 1 => 2, and it was made visible. This will result in multiple posts with position value of 2.
The newly made visible post will have a position of 2 and the post with a previous position of #1 will also have a position of 2.