Browse Source

update strpos with php 8 function

nex-php
yggverse 7 months ago
parent
commit
296525aac3
  1. 2
      src/nex.php

2
src/nex.php

@ -210,7 +210,7 @@ $server->start( @@ -210,7 +210,7 @@ $server->start(
}
// Validate realpath exists, started with path defined and does not contain hidden entities
if ($realpath && str_starts_with($realpath, NEXT_PATH) && false === strpos($realpath, DIRECTORY_SEPARATOR . '.'))
if ($realpath && str_starts_with($realpath, NEXT_PATH) && !str_contains($realpath, DIRECTORY_SEPARATOR . '.'))
{
// Try directory
if (is_dir($realpath))

Loading…
Cancel
Save