Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Set the correct path to TCPDF in system/config/tcpdf.php (see #7264)
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Aug 28, 2014
1 parent 3b88dba commit f4fb91c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions system/config/tcpdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@

/**
* This is the TCPDF (PDF generator) configuration file. See
* system/vendor/tcpdf for more information.
* vendor/tecnick.com/tcpdf for more information.
*/
define('K_TCPDF_EXTERNAL_CONFIG', true);
define('K_PATH_MAIN', TL_ROOT . '/vendor/contao/tcpdf/');
define('K_PATH_URL', Environment::get('base') . 'vendor/contao/tcpdf/');
define('K_PATH_MAIN', TL_ROOT . '/vendor/tecnick.com/tcpdf/');
define('K_PATH_URL', Environment::get('base') . 'vendor/tecnick.com/tcpdf/');
define('K_PATH_FONTS', K_PATH_MAIN . 'fonts/');
define('K_PATH_CACHE', TL_ROOT . '/system/tmp/');
define('K_PATH_URL_CACHE', TL_ROOT . '/system/tmp/');
Expand Down
7 changes: 7 additions & 0 deletions system/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Contao Open Source CMS changelog
================================

Version 3.3.6 (2014-XX-XX)
--------------------------

### Fixed
Set the correct path to TCPDF in `system/config/tcpdf.php` (see #7264).


Version 3.3.5 (2014-08-27)
--------------------------

Expand Down

0 comments on commit f4fb91c

Please sign in to comment.