]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/register_functions.php
Deleting of network type handler partialy finished
[mailer.git] / inc / libs / register_functions.php
index 99af2efc60c7ba22d6f82a729c13617e7ef71202..efc9e4b2efd22617d60547a6505b5b68abe0accb 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 07/10/2004 *
- * ===============                              Last change: 07/10/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 07/10/2004 *
+ * ===================                          Last change: 07/10/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : register_functions.php                           *
@@ -89,12 +89,6 @@ function registerGenerateCategoryTable ($mode, $return=false) {
                $SW = 2;
                $OUT .= "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\n";
                while ($content = SQL_FETCHARRAY($result)) {
-                       // Is the array element not set?
-                       if (!isPostRequestElementSet('cat', $content['id'])) {
-                               // Then set it
-                               setRequestPostElement('cat', array($content['id'] => ''));
-                       } // END - if
-
                        // Prepare array for the template
                        $content = array(
                                'sw'    => $SW,
@@ -104,6 +98,7 @@ function registerGenerateCategoryTable ($mode, $return=false) {
                                'id'    => $content['id'],
                        );
 
+                       // Mark categories
                        if ((postRequestElement('cat', $content['id']) == 'Y') || ((getConfig('register_default') == 'Y') && (!isPostRequestElementSet('cat', $content['id'])))) {
                                $content['def_y'] = ' checked="checked"';
                        } else {
@@ -147,10 +142,13 @@ function FILTER_REGISTER_MUST_FILLOUT ($content) {
        $result = SQL_QUERY("SELECT `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC",
                __FUNCTION__, __LINE__);
 
+       // Walk through all entries
        while ($row = SQL_FETCHARRAY($result)) {
+               // Must the user fill out this element?
                $value = '';
                if ($row['field_required'] == 'Y') $value = "<span class=\\\"guest_failed\\\">&nbsp;(*)</span>";
-               // @TODO Rewrite these constants
+
+               // Add it
                $content['must_fillout_'.strtolower($row['field_name']).''] = $value;
        } // END - while