HELLO v3!!!

This commit is contained in:
Ryan Dewhurst
2018-09-26 21:12:01 +02:00
parent 28b9c15256
commit d268a86795
1871 changed files with 988118 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?php
/**
* this contains the current version
* define and some util functions
* related to the lib version.
*
* $Id: version.inc 3578 2015-05-19 01:12:19Z mpwalsh8 $
*
* @author Walter A. Boring IV <waboring@newsblob.com>
* @author Mike Walsh <mike@walshcrew.com>
* @package phpHtmlLib
*
*/
/**
* This is the version of the libs
* @var string - the version string.
*/
define("PHPHTMLLIB_VERSION", '2.6.8.3578');
/**
* get the current version of
* the phphtmllib libraries.
*
* @return string - the current version string
*/
function phphtmllib_get_version() {
return PHPHTMLLIB_VERSION;
}
?>