8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb4412b commit 674f29dCopy full SHA for 674f29d
SocksProxy.php
@@ -66,7 +66,7 @@ public function initialize(Sidebar $sidebar): void
66
public function handlePageAction(string $page): bool
67
{
68
// Verify that this plugin should handle the page
69
- if (str_starts_with($page, "/plugin__" . $this->getName())) {
+ if (strpos($page, "/plugin__" . $this->getName()) === 0) {
70
71
// Instantiate a StatusMessage object
72
$status = new \RaspAP\Messages\StatusMessage;
0 commit comments