if ($ln > 0) {
            //Go to next line
            $this->y += $h;
            if ($ln == 1) {
                $this->x = $this->lMargin;
            }
        } else {
            $this->x += $w;
        }
    }
}
//ADDED TO ACTIVATE HTML TAGS IN MULTICELL (USED FOR OT.DE Rücksendeschein) SetStyle, MultiCellTag
require_once DIR_WS_CLASSES . 'class.string_tags.php';
require_once DIR_WS_CLASSES . 'class.multicelltag.php';
$pdf = new fpdf_multicelltag('P', 'mm', 'A4');
$pdf->initPDF();
$pdf->setTitle('Invoice / Delivery Document');
$pdf->SetAuthor('JULIE GRACE');
$pdf->SetCreator('k-Auto Generated PDF');
$pdf->SetDisplayMode('real');
$pdf->SetAutoPageBreak(false, 1);
$gray = 160;
$black = 0;
$order_counter = 0;
$fontsize_big = '9';
$fontsize_med = '8';
$fontsize_sml = '7';
$fontsize_sml_med = '6';
$fontsize_tny = '5';
$margin = 10;
$pdf->use_logo = true;