Passed
Push — Security_and_bug_fixes ( cb92f3...2b89b6 )
by Stone
03:26
created
App/Controllers/Ajax/PostVerification.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -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.