Resolve #3021671 "Node revisions current"
1 unresolved thread
Closes #3021671
Merge request reports
Activity
added 1 commit
- 4a85c203 - Issue 3021671: Show "Current revision" only on first page
- Resolved by Kalle Vuorjoki
- Resolved by Kalle Vuorjoki
201 $this->drupalLogin($this->editor); 202 203 $revision_log = $this->randomMachineName(10); 204 $node = $this->drupalCreateNode(['revision_log' => $revision_log]); 205 206 // Create 51 revisions to generate paginated revisions. 207 $revision_count = 51; 208 for ($i = 0; $i < $revision_count; $i++) { 209 $node->setTitle($this->randomString()); 210 $node->setRevisionLogMessage($i); 211 $node->setNewRevision(); 212 $node->save(); 213 } 214 215 $this->drupalGet('node/' . $node->id() . '/revisions'); 216 $this->assertSession()->statusCodeEquals(200); changed this line in version 3 of the diff
Please register or sign in to reply