diff options
Diffstat (limited to 'app/Report/ReportPdfCell.php')
| -rw-r--r-- | app/Report/ReportPdfCell.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Report/ReportPdfCell.php b/app/Report/ReportPdfCell.php index 0f367df039..b25d5972ba 100644 --- a/app/Report/ReportPdfCell.php +++ b/app/Report/ReportPdfCell.php @@ -15,6 +15,7 @@ namespace Fisharebest\Webtrees\Report; * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +use Fisharebest\Webtrees\Functions\FunctionsRtl; /** * Class ReportPdfCell @@ -108,7 +109,7 @@ class ReportPdfCell extends ReportBaseCell { if ($renderer->checkPageBreakPDF($cHT)) { $this->top = $renderer->GetY(); } - $temptext = spanLTRRTL($temptext, "BOTH"); + $temptext = FunctionsRtl::spanLtrRtl($temptext, "BOTH"); } // HTML ready - last value is true $renderer->MultiCell( |
