]> git.mxchange.org Git - mailer.git/commitdiff
Parser errors fixed
authorRoland Häder <roland@mxchange.org>
Thu, 1 Jul 2010 05:00:27 +0000 (05:00 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 1 Jul 2010 05:00:27 +0000 (05:00 +0000)
inc/modules/admin/what-refbanner.php
inc/modules/member/what-holiday.php

index 8f23c36e460b6a00f25b6cad2305a5db50b25c00..5d4b6a961af4636d4eca6abae84c6d45322c60b3 100644 (file)
@@ -115,7 +115,7 @@ VALUES ('%s','%s','%s')",
                SQL_FREERESULT($result);
 
                // Preapre data for the row
-               $content['visible'] => addSelectionBox('yn', $content['visible'], 'visible');
+               $content['visible'] = addSelectionBox('yn', $content['visible'], 'visible');
 
                // Load row template and switch color
                $OUT .= loadTemplate('admin_refbanner_edit_row', true, $content);
index d22688bea8629675837ddec0bdc865c6771770a1..dc459c24e9c9e800984b825ca418e75086616555 100644 (file)
@@ -295,7 +295,7 @@ LIMIT 1", array(getMemberId()), __FILE__, __LINE__);
                        case 'N': // Display activation form
                                // Cache timestamps
                                $startingStamp = time() + getConfig('ONE_DAY');
-                               $endingStamp   = $startingStamp + (getConfig('ONE_DAY') * getConfig('holiday_max');
+                               $endingStamp   = $startingStamp + (getConfig('ONE_DAY') * getConfig('holiday_max'));
 
                                // Starting day
                                $content['start_day']   = addSelectionBox('day'  , getDay($startingStamp)  , 'start');