mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-07-23 23:11:04 -04:00
- str_starts_with, str_contains used instead of strpos === 0, strpos !== 0, strpos === false, strpos !== false
- symfony/polyfill-php80 installed to introduce the polyfill and support php7.3 using php8 functions - symfony/polyfill-ctype installed to introduce ctype functions in case somebody doesn't have the ctype extension installed
This commit is contained in:
parent
15488d3405
commit
f9e2373e62
29 changed files with 1367 additions and 555 deletions
|
@ -301,7 +301,7 @@ class JsonApiTest extends TestCase
|
|||
|
||||
$_SERVER['REQUEST_URI'] = $baseUri . 'link=https%3A%2F%2Fexample.com%2Fpath%2F%3Ffoo%23bar';
|
||||
$_GET['link'] = 'https://example.com/path/?foo#bar';
|
||||
if (strpos($baseUri, '?shortenviayourls') !== false) {
|
||||
if (str_contains($baseUri, '?shortenviayourls')) {
|
||||
$_GET['shortenviayourls'] = null;
|
||||
}
|
||||
ob_start();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue