]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-categories.php
config.php partly solved, see #117
[mailer.git] / inc / modules / member / what-categories.php
index 93da79f9ab9e70e162492ae3eff8148b0d96ed87..9f2f814446bd8e5722794bf15e0cfdf5b6d362a5 100644 (file)
@@ -113,21 +113,21 @@ if ($cats > 0) {
                $OUT = ''; $SW = 2;
                while ($content = SQL_FETCHARRAY($result)) {
                        // Default he has not joined
-                       $content['jn'] = ' chkecked="checked"';
+                       $content['jn'] = ' checked="checked"';
                        $content['jy'] = '';
 
                        // When we found an entry don't read it, just change the jx elements
                        if (REQUEST_ISSET_POST(('cat'))) {
                                // Form sent?
                                if (REQUEST_POST('cat', $content['id']) =='Y') {
-                                       $content['jy'] = ' chkecked="checked"';
+                                       $content['jy'] = ' checked="checked"';
                                        $content['jn'] = '';
                                }
                        } else {
                                // Check if he has an entry
                                if (GET_TOTAL_DATA($UID, "user_cats", "id", 'userid', true, sprintf(" AND cat_id=%s", bigintval($content['id']))) == 1) {
                                        $content['jn'] = '';
-                                       $content['jy'] = ' chkecked="checked"';
+                                       $content['jy'] = ' checked="checked"';
                                }
                        }