diff --git a/members/index.php b/members/index.php
index a2ec369..8af3cc3 100644
--- a/members/index.php
+++ b/members/index.php
@@ -1,67 +1,67 @@
- // Preamble
- $pageName = "Developer Central";
- $focused = "home"; // Dock icon name to gets a border
- $need = 'auth';
- require("../parts/preamble.php"); // Load most of document
-?>
-
-
- function infoItem($url, $desc, $longdesc)
- {
- echo '
' .
- ' - ' . $desc . '
' .
- ' - ' . $longdesc . '
' .
- '
';
- }
-?>
-Welcome to Developer Central!
-
-This is the area for developers to post news, edit your user information,
-and so on. Members with Admin-level access can modify news items and post
-State of the Code items here as well.
-
-
-
- tableHeader("100%", "black");
-?>
-
-
-
- tableBoxHeader("100%", "black", tableHeadColor);
- tableTitle("QuakeForge Developer Resources", 1, "black");
- ?>
- |
-
-
- infoItem('addnews.php', 'Post News', 'Post new news items from here.');
- infoItem('userinfo.php', 'User Info', 'Display or change your user information; Please use this when your email address, phone number, or snailmail address changes.');
- infoItem('plan.php', 'Edit "plan"', 'Not used by the web site at the moment, this will provide something for users to see what the hell we\'re working on.');
- ?>
-
- |
-
- tableBoxFooter() ?>
-
- if ($userInfo[u_admin] == 'Y') { ?>
-
-
- tableBoxHeader(featureBgColor, tableHeadColor);
- tableTitle("Administration", 1, tableHeadColor);
- ?>
- |
-
- News [ Add | Edit | Delete ]
- SotC [ Add | Edit | Delete ]
- User [ Add | Edit | Delete ]
- |
-
-
- tableBoxFooter();
- ?>
-
- } ?>
-
- tableFooter(); ?>
-
- require (siteHome ."/parts/postamble.php"); // Finish this sucker up
-?>
+ // Preamble
+ $pageName = "Developer Central";
+ $focused = "home"; // Dock icon name to gets a border
+ $need = 'auth';
+ require("../parts/preamble.php"); // Load most of document
+?>
+
+
+ function infoItem($url, $desc, $longdesc)
+ {
+ echo '' .
+ ' - ' . $desc . '
' .
+ ' - ' . $longdesc . '
' .
+ '
';
+ }
+?>
+Welcome to Developer Central!
+
+This is the area for developers to post news, edit your user information,
+and so on. Members with Admin-level access can modify news items and post
+State of the Code items here as well.
+
+
+
+ tableHeader("100%", "black");
+?>
+
+
+
+ tableBoxHeader("100%", "black", tableHeadColor);
+ tableTitle("QuakeForge Developer Resources", 1, "black");
+ ?>
+ |
+
+
+ infoItem('addnews.php', 'Post News', 'Post new news items from here.');
+ infoItem('userinfo.php', 'User Info', 'Display or change your user information; Please use this when your email address, phone number, or snailmail address changes.');
+ infoItem('plan.php', 'Edit "plan"', 'Update this to notify the outside world what you\'re currently working on.');
+ ?>
+
+ |
+
+ tableBoxFooter() ?>
+
+ if ($userInfo[u_admin] == 'Y') { ?>
+
+
+ tableBoxHeader(featureBgColor, tableHeadColor);
+ tableTitle("Administration", 1, tableHeadColor);
+ ?>
+ |
+
+ News [ Add | Edit | Delete ]
+ SotC [ Add | Edit | Delete ]
+ User [ Add | Edit | Delete ]
+ |
+
+
+ tableBoxFooter();
+ ?>
+
+ } ?>
+
+ tableFooter(); ?>
+
+ require (siteHome ."/parts/postamble.php"); // Finish this sucker up
+?>
diff --git a/search.php b/search.php
index ef5f26e..be6b641 100644
--- a/search.php
+++ b/search.php
@@ -8,6 +8,8 @@
$focused = "none"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
// Start actual search
+ $lib = dblist();
+ echo "Using dbm library '$lib'";
$dbm = dbmopen("siteindex.db","r");
if (dbmexists($dbm, $string)) {
$parseMe = dbmfetch($dbm, $string);