You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$line was null, which hurt my php.
So, my fix:
line num #144 in Parsedown.php:
foreach ($parts as $part)
{
$lineLength=0;
if ($line)
{
$lineLength = mb_strlen($line, 'utf-8');
}
$shortage = 4 - $lineLength % 4;
Love the project, all the best:
$line was null, which hurt my php.
So, my fix:
line num #144 in Parsedown.php:
foreach ($parts as $part)
{
$lineLength=0;
if ($line)
{
$lineLength = mb_strlen($line, 'utf-8');
}
$shortage = 4 - $lineLength % 4;
}
The text was updated successfully, but these errors were encountered: