]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-earning.php
Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / member / what-earning.php
index c0b2ab53434d88aa962634ac190774795627167b..a4ad2d67078dbc9936e2afe88bd2e55e5fa32060 100644 (file)
@@ -65,7 +65,7 @@ FROM
 ORDER BY
        d.`earning_sorting` ASC', __FILE__, __LINE__);
 
-// Do we have entries?
+// Are there entries?
 if (!SQL_HASZERONUMS($result)) {
        // Init output
        $OUT = '';
@@ -90,7 +90,7 @@ LIMIT 1',
                                getMemberId()
                        ), __FILE__, __LINE__);
 
-               // Do we have an entry?
+               // Is there an entry?
                if (SQL_NUMROWS($result2) == 1) {
                        // Load it
                        $content = merge_array($content, SQL_FETCHARRAY($result2));
@@ -99,7 +99,7 @@ LIMIT 1',
                // Free result
                SQL_FREERESULT($result2);
 
-               // Do we have user_earning data available?
+               // Is there user_earning data available?
                if (!isset($content['earning_active'])) {
                        // Load row template "open subscription"
                        $OUT .= loadTemplate('member_earning_' . strtolower($content['earning_group']) . '_form_row', true, $content);