We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5691aac commit 957488eCopy full SHA for 957488e
tests/phpMyFAQ/LinkTest.php
@@ -278,6 +278,12 @@ public function testToStringWithEnabledRewriteRules(): void
278
$this->link->toString()
279
);
280
281
+ $this->link = new Link('http://faq.example.org/my-test-faq/index.php?action=bookmarks', $this->configuration);
282
+ $this->assertEquals(
283
+ 'http://faq.example.org/my-test-faq/user/bookmarks',
284
+ $this->link->toString()
285
+ );
286
+
287
$this->link = new Link(
288
'http://faq.example.org/my-test-faq/index.php?action=faq&cat=1&id=36&artlang=de',
289
$this->configuration
0 commit comments