diff options
author | wushin <pasekei@gmail.com> | 2014-11-10 13:07:46 -0600 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-11-10 13:08:17 -0600 |
commit | e41baa4c3aeb5f2b05fb928c1bf13e6a9bb130a7 (patch) | |
tree | 0f39a2cacc774eacf8e680f6b46a01536a8f93e2 | |
parent | 83beb93bb1968692d920b34e3dd515fab5388612 (diff) | |
download | website-e41baa4c3aeb5f2b05fb928c1bf13e6a9bb130a7.tar.gz website-e41baa4c3aeb5f2b05fb928c1bf13e6a9bb130a7.tar.bz2 website-e41baa4c3aeb5f2b05fb928c1bf13e6a9bb130a7.tar.xz website-e41baa4c3aeb5f2b05fb928c1bf13e6a9bb130a7.zip |
Add FAQ Link
revert email sending until ladmin is webbased
add globalsign meta tag
-rw-r--r-- | includes/common.php | 4 | ||||
-rw-r--r-- | registration.php | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/includes/common.php b/includes/common.php index 8e9565c..ea8a63f 100644 --- a/includes/common.php +++ b/includes/common.php @@ -21,6 +21,7 @@ function placeHeader($page_title) <meta name="description" content="The Mana World is a free MMORPG game for Linux, MacOS X and Windows"/> <meta name="keywords" content="The Mana World, Mana, World, MMORPG, RPG, free, GPL, Open Source, Pixel Art, 2D, Software Development, MacOSX, Windows, Linux, desktop, tablet, Game, 16-bit, Retro, Fantasy, 8-bit, Indie, Game Development, Game Engine, Open Source MMORPG"/> <meta name="author" content="The Mana World Dev Team"/> + <meta name="globalsign-domain-verification" content="wfLgRJB6QP57zObNXrUNC-w-kN0x55jjXhQza9tnsx" /> <link rel="stylesheet" type="text/css" href="default.css"/> </head> <body> @@ -54,9 +55,10 @@ function placeHeader($page_title) <li><a href="news-feed.php">News</a></li> <li><a href="about.php">About</a></li> <li><a href="https://webchat.freenode.net/?channels=#themanaworld">Support (IRC)</a></li> - <li><a href="https://wiki.themanaworld.org/index.php/Servers">Servers</a></li> <li><a href="https://wiki.themanaworld.org/">Wiki</a></li> <li><a href="https://forums.themanaworld.org/">Forums</a></li> + <li><a href="https://wiki.themanaworld.org/index.php/FAQ">FAQ</a></li> + <li><a href="https://wiki.themanaworld.org/index.php/Servers">Servers</a></li> </ul> </div> </div> diff --git a/registration.php b/registration.php index 77ef2cd..8a5c49e 100644 --- a/registration.php +++ b/registration.php @@ -148,7 +148,7 @@ important precaution.</p> $message = getEmailTemplate($data); $headers .= $message[0]; - mail($mail_to,$subject,$message[1],$headers); + //mail($mail_to,$subject,$message[1],$headers); header("Location: /thank_you.php"); } |