mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
14 lines
281 B
PHP
Executable File
14 lines
281 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Tag;
|
|
|
|
class Pre extends BlockTag
|
|
{
|
|
|
|
public function open($attr, &$ahtml, &$ihtml)
|
|
{
|
|
$this->mpdf->ispre = true; // ADDED - Prevents left trim of textbuffer in printbuffer()
|
|
parent::open($attr, $ahtml, $ihtml); // TODO: Change the autogenerated stub
|
|
}
|
|
}
|