Commit 6a977ccfab7fe90ad4203d4e25fa821d98e43cce

Authored by michael
1 parent a247f8de

added search permission table alias

added netscape browser flag to $default


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2271 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 2 additions and 0 deletions
config/dmsDefaults.php
... ... @@ -132,6 +132,7 @@ $default->owl_time_period_table = "time_period";
132 132 $default->owl_time_unit_lookup_table = "time_unit_lookup";
133 133 $default->owl_archive_restoration_table = "archive_restoration_request";
134 134 $default->owl_status_table = "status_lookup";
  135 +$default->search_permissions_table = "search_document_user_link";
135 136  
136 137 // logo file that must reside inside lang/graphics directory
137 138 $default->logo = "kt.jpg";
... ... @@ -412,6 +413,7 @@ require_once("$default->fileSystemRoot/presentation/Html.inc");
412 413 $default->phpSniff = new phpSniff($_SERVER["HTTP_USER_AGENT"]);
413 414 $default->browser = $default->phpSniff->property("browser");
414 415 $default->version = $default->phpSniff->property("version");
  416 +$default->bNN4 = ($default->browser == "moz") && ($default->version <= "4.79");
415 417  
416 418 require_once("$default->fileSystemRoot/lib/Log.inc");
417 419 $default->log = new Log($default->fileSystemRoot . "/log", INFO);
... ...