diff --git a/common.inc.php b/common.inc.php
index 0db97eb..d94e30f 100644
--- a/common.inc.php
+++ b/common.inc.php
@@ -591,7 +591,16 @@ if(is_array($nav)) {
?>
- echo "- ".i18n("Home").'
';
+ if ($config['website']) {
+ if ($config['website_name']) {
+ echo "- {$config['website_name']}
";
+ } else {
+ echo "- ".i18n("Fair Home").'
';
+ }
+ echo "- ".i18n("Registration Home").'
';
+} else {
+ echo "- ".i18n("Home").'
';
+}
echo "- ".i18n("Important Dates").'
';
echo $registrationconfirmationlink;
/*
diff --git a/db/db.code.version.txt b/db/db.code.version.txt
index 6bb2f98..0f11735 100644
--- a/db/db.code.version.txt
+++ b/db/db.code.version.txt
@@ -1 +1 @@
-195
+196
diff --git a/db/db.update.196.sql b/db/db.update.196.sql
new file mode 100644
index 0000000..67eb9c5
--- /dev/null
+++ b/db/db.update.196.sql
@@ -0,0 +1 @@
+INSERT INTO `config` ( `var` , `val` , `category` , `type` , `type_values` , `ord` , `description` , `section`, `conferencetypes`, `conferences_id`, `year`) VALUES ( 'website', '', 'Global', 'text', '', '800', 'Your organization\'s website', 'conference', 'sciencefair,scienceolympics', '-1', '-1'), ( 'website_name', '', 'Global', 'text', '', '801', 'The name for your organization\'s website. This is only used if a website is entered.', 'conference', 'sciencefair,scienceolympics', '-1', '-1');