16 lines
323 B
Text
16 lines
323 B
Text
<?php
|
|
function date_php4_set_variables() {
|
|
variable_set('date_max_year', 3000);
|
|
variable_set('date_min_year', 100);
|
|
variable_set('date_php_min_year', 1971);
|
|
}
|
|
|
|
function date_php4_install() {
|
|
$ret = array();
|
|
date_php4_set_variables();
|
|
return $ret;
|
|
}
|
|
|
|
function date_php4_enable() {
|
|
date_php4_set_variables();
|
|
}
|