2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Import from DCARF SVN

This commit is contained in:
azammitdcarf
2008-10-15 04:55:53 +00:00
parent ec24d5af18
commit 4f0b4f0bbb
57 changed files with 17565 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
if (version_compare(PHP_VERSION, '5.0.0', '<') && version_compare(PHP_VERSION, '4.0.0', '>'))
{
require_once('tcpdf_php4.php');
}
else if (version_compare(PHP_VERSION, '5.0.0', '>'))
{
require_once('tcpdf.php');
}
?>