|
@@ -45,9 +45,11 @@ |
|
|
block discarded – undo |
|
45
|
45
|
|
|
46
|
46
|
$data = $this->postModel->isPostSlugUnique(/** @scrutinizer ignore-type */$postSlug); //we have checked that slug is valid so no type error |
|
47
|
47
|
|
|
48
|
|
- if ($data === false) //slug is not unique, but could be from the same post |
|
|
48
|
+ if ($data === false) { |
|
|
49
|
+ //slug is not unique, but could be from the same post |
|
49
|
50
|
{ |
|
50
|
51
|
$slugOfId = $this->postModel->getPostSlugFromId($postId); |
|
|
52
|
+ } |
|
51
|
53
|
if ($slugOfId === $postSlug) { |
|
52
|
54
|
//it's the same post, return true |
|
53
|
55
|
$data = true; |
Please login to merge, or discard this patch.