<?php
/*-------------------------------------------------------+
| Guestbook Infusion 4.12
| Author: Sebastian Schüssler (slaughter)
| Download:
| http://basti2web.de
+--------------------------------------------------------+
| Filename: infusion_db.php
| Version: 4.10
| Author: Sebastian Schüssler (slaughter)
+--------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("DB_GB_ENTRY")) {
define("DB_GB_ENTRY", DB_PREFIX."guestbook_entry");
}
if (!defined("DB_GB_SETTINGS")) {
define("DB_GB_SETTINGS", DB_PREFIX."guestbook_settings");
}
if (!defined("DB_GB_LOG")) {
define("DB_GB_LOG", DB_PREFIX."guestbook_log");
}
if (!defined("DB_GB_CAPTCHA")) {
define("DB_GB_CAPTCHA", DB_PREFIX."guestbook_captcha");
}
if (!defined("DB_GB_BBCODES")) {
define("DB_GB_BBCODES", DB_PREFIX."guestbook_bbcodes");
}
// PHP-Fusion 6 Compatibility
if (!defined("DB_INFUSIONS")) {
define("DB_INFUSIONS", DB_PREFIX."infusions");
}
if (!defined("DB_MESSAGES")) {
define("DB_MESSAGES", DB_PREFIX."messages");
}
if (!defined("DB_USERS")) {
define("DB_USERS", DB_PREFIX."users");
}
?>