]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-transfer.php
Admin menu has now a JavaScript "effect":
[mailer.git] / inc / modules / member / what-transfer.php
index e9bd50bb2e84e8faf7b257f27de29866d506df2e..56a3b14ebe3b9d9ae82f99596d35f8b47ca2b18a 100644 (file)
@@ -53,8 +53,8 @@ if ((!isExtensionActive('transfer')) && (!isAdmin())) {
 
 // Check for mode in GET
 $mode = '';
-if (isGetRequestElementSet('mode')) {
-       $mode = getRequestElement('mode');
+if (isGetRequestElementSet('do')) {
+       $mode = getRequestElement('do');
 } // END - if
 
 // Check for "faker"
@@ -443,7 +443,7 @@ INDEX (`party_userid`)
                $totalIn = countSumTotalData(getMemberId(), 'user_transfers_in', 'id', 'userid', true);
                $content['in_link'] = $totalIn;
                if ($totalIn > 0) {
-                       $content['in_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_in%}">' . $totalIn . '</a>';
+                       $content['in_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;do=list_in%}">' . $totalIn . '</a>';
                } // END - if
 
                // Check outgoing transfers
@@ -451,7 +451,7 @@ INDEX (`party_userid`)
 
                $content['out_link'] = $totalOut;
                if ($totalOut > 0) {
-                       $content['out_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_out%}">' . $totalOut . '</a>';
+                       $content['out_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;do=list_out%}">' . $totalOut . '</a>';
                } // END - if
 
                // Add all to total amount
@@ -460,7 +460,7 @@ INDEX (`party_userid`)
                // Total transactions
                $content['all_link'] = $total;
                if ($total > 0) {
-                       $content['all_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_all%}">{%pipe,translateComma=' . $total . '%}</a>';
+                       $content['all_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;do=list_all%}">{%pipe,translateComma=' . $total . '%}</a>';
                } // END - if
 
                if (isFormSent()) {
@@ -483,7 +483,7 @@ INDEX (`party_userid`)
                // Set 'new transfer' link according to above option
                switch (getUserData('opt_in')) {
                        case 'Y':
-                               $content['new_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=new%}" title="{--TRANSFER_NOW_TITLE--}">{--TRANSFER_NOW_LINK--}</a>';
+                               $content['new_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;do=new%}" title="{--TRANSFER_NOW_TITLE--}">{--TRANSFER_NOW_LINK--}</a>';
                                break;
 
                        case 'N':