Type casting can be used

Signed-off-by: Yuriy Pikhtarev <iglix@me.com>
This commit is contained in:
Yuriy Pikhtarev 2018-06-24 15:23:40 +03:00
commit b08f6e898b
No known key found for this signature in database
GPG key ID: 3A9B5A757B48ECC6
7 changed files with 14 additions and 14 deletions

View file

@ -200,7 +200,7 @@ function strip_quotes($text)
do {
$pos = strpos($lowertext, '[quote', $curpos);
if ($pos !== false) {
$start_pos["$pos"] = 'start';
$start_pos[(string)$pos] = 'start';
$curpos = $pos + 6;
}
} while ($pos !== false);
@ -215,7 +215,7 @@ function strip_quotes($text)
do {
$pos = strpos($lowertext, '[/quote', $curpos);
if ($pos !== false) {
$end_pos["$pos"] = 'end';
$end_pos[(string)$pos] = 'end';
$curpos = $pos + 8;
}
} while ($pos !== false);
@ -259,7 +259,7 @@ function strip_quotes($text)
// recursion.
if ($stack) {
foreach ($stack as $pos) {
unset($pos_list["$pos"]);
unset($pos_list[(string)$pos]);
}
}
} while ($stack);