Stable Release in my Production Enviroment, test it first to be sure it works for you.
Get Plugin-------------------------------------------------------
Noticed an error after I submitted v3.0 to fix search you will need to edit the sql.php file in the templates folder.
Was:
$query4 = "SELECT * FROM ".$_DB_table_prefix."intraab WHERE '".$_POST['searchtype']."' like '%".$_POST['searchterm']."%'";
Should Be:
$query4 = "SELECT * FROM ".$_DB_table_prefix."intraab WHERE ".$searchtype." like '%".$searchterm."%'";
------------------------------------------------------
Intraab should be Register_Globals = off Compatible now.
Major Change: Intraab now uses the same user id (uid) as the rest of Geeklog. (In preparation of gl_timecard (lite) which will be released sometime next week)
Please Note--- There is
NO direct upgrade ability of existing Intraab installs to 3.0. I'm sorry for this inconvience, it was an oversight on my part. This functionality should have be part of Intraab at intial release as I knew I would need to make this change at a later date. The reason for no direct upgrade is that there is no simple and reliable way to merge users from gl_users with gl_intraab with out going one by one.
That said I will provide a tool for doing one-to-one merging next week. the Tool will create a temp table and copy the existing Intraab records, then delete the gl_intraab table and recreate it will the changes made to the table. The records will then step through one by one allowing you to assign them existing records in gl_users.
-----------------------------------------
Other changes:
Fixed some minor bugs in the code.
Changed how the pages are called in index.php due to the Register_Globals = off change