]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/action-sponsor.php
Hotfix
[mailer.git] / inc / modules / guest / action-sponsor.php
index 0aecc31545d304a8899fbd8d5ab2fa899090ea58..ad6c42e52ac234465cb30859d95752a4b8130223 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software. You can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -42,13 +42,21 @@ if (!defined('__SECURITY')) {
        return;
 }
 
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+if ((!isExtensionActive('sponsor')) && (!isAdmin())) {
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}');
+       return;
+} // END - if
+
 // Load the include file
 $inc = sprintf("inc/modules/guest/what-%s.php", getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
-       loadInclude($inc);
+       loadIncludeOnce($inc);
 } else {
-       addFatalMessage(__FILE__, __LINE__, '{--GUEST_404_WHAT--}', getWhat());
+       addFatalMessage(__FILE__, __LINE__, '{--GUEST_WHAT_404--}');
 }
 
 // [EOF]