fix to work with version 0.9.99

This commit is contained in:
Ralf Becker 2003-09-13 21:07:27 +00:00
parent 850b3f6b4f
commit 9c19f4d33c

View File

@ -55,7 +55,7 @@
list($a,$b,$c,$d) = explode('.',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
//echo "Version: $a.$b.$c.$d\n";
$this->stable = $a <= 0 && $b <= 9 && $c <= 14 && !is_object($GLOBALS['phpgw']->xslttpl);
$this->stable = $a <= 0 && $b <= 9 && ($c <= 14 || $c == 99) || !is_object($GLOBALS['phpgw']->xslttpl);
}
/*!