Compare commits

..

3 Commits

Author SHA1 Message Date
kplaczek
ec776f837e Merge remote-tracking branch 'origin/master'
# Conflicts:
#	app/Paper/HtmlToPos.php
2018-04-19 23:04:55 +02:00
fbac17281a Merge branch 'issue-14' of krzysiej/paper-pi into master 2018-04-19 23:00:44 +02:00
kplaczek
501a64e0c7 Removes before printing lines with ! or # as a leading characer even after some space characters in front. 2018-04-19 22:59:47 +02:00

View File

@@ -32,7 +32,6 @@ class HtmlToPos
$pos = strpos($posText, $match[0]); $pos = strpos($posText, $match[0]);
$posText = substr_replace($posText, mb_rand($match[1], $match[2]), $pos, strlen($match[0])); $posText = substr_replace($posText, mb_rand($match[1], $match[2]), $pos, strlen($match[0]));
} }
return $posText; return $posText;
} }