diff options
| author | spiderr <spiderr@bitweaver.org> | 2025-05-13 10:24:35 -0400 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2025-05-13 10:24:35 -0400 |
| commit | 887ba9e1d94a75fc2ff07c7a97ab2d2ccc15d212 (patch) | |
| tree | 71f652004918ea4fbca1d25b29c631138a4886f4 /plugins | |
| parent | d12aa6680ed1626d1e0c8a495dc2a3d30b4879f2 (diff) | |
| download | liberty-887ba9e1d94a75fc2ff07c7a97ab2d2ccc15d212.tar.gz liberty-887ba9e1d94a75fc2ff07c7a97ab2d2ccc15d212.tar.bz2 liberty-887ba9e1d94a75fc2ff07c7a97ab2d2ccc15d212.zip | |
PHP8 fixes: curly params; use ::verifyIdParameter()
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/format.tikiwiki.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/format.tikiwiki.php b/plugins/format.tikiwiki.php index 07c8d23..f1a04f8 100644 --- a/plugins/format.tikiwiki.php +++ b/plugins/format.tikiwiki.php @@ -116,7 +116,7 @@ class TikiWikiParser extends BitBase { function howManyAtStart($str, $car) { $cant = 0; $i = 0; - while (($i < strlen($str)) && (isset($str{$i})) && ($str{$i}== $car)) { + while (($i < strlen($str)) && (isset($str[$i])) && ($str[$i]== $car)) { $i++; $cant++; } |
