* Add support for the '=*' and '!*' operators
* Added a HELP_WANTED file describing what are the major things missing which people could contribute.
* Updated TODO
+* The new group page should only be available if the general library type is sql
Ver 1.30:
* Add limit of results returned in accounting.php3
* Fix a bug in time2strclock() in lib/functions.php3. Seconds ammount more than 9 would not show.
exit;
}
require('../conf/config.php3');
+
+if ($config[general_lib_type] != 'sql'){
+ echo <<<EOM
+<title>New group creation page</title>
+<link rel="stylesheet" href="style.css">
+</head>
+<body bgcolor="#80a040" background="images/greenlines1.gif" link="black" alink="black">
+<center>
+<b>This page is only available if you are using sql as general library type</b>
+</body>
+</html>
+EOM;
+ exit();
+}
+
require('../lib/attrshow.php3');
require('../lib/defaults.php3');