Changes between Initial Version and Version 4 of Ticket #1683


Ignore:
Timestamp:
Sep 27, 2019, 8:57:09 AM (6 years ago)
Author:
Torsten Riemer
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1683

    • Property Resolutionworksforme
    • Property Status newclosed
    • Property Milestonemodified-shop-2.0.5.0
  • Ticket #1683 – Description

    initial v4  
    11In Datei shoproot/includes/modules/set_account_type.php findet sich ab Zeile 14:
    22
     3{{{
    34  $account_type_query = xtc_db_query("-- /includes/application_top.php
    45                                      SELECT account_type,
     
    67                                        FROM ".TABLE_CUSTOMERS."
    78                                       WHERE customers_id = '".(int) $_SESSION['customer_id']."'");
     9}}}
    810
    911sowie ab Zeile 23:
    1012
     13{{{
    1114    $zone_query = xtc_db_query("-- /includes/application_top.php
    1215                            SELECT entry_country_id
     
    1417                             WHERE customers_id='".(int) $_SESSION['customer_id']."'
    1518                               AND address_book_id='".$account_type['customers_default_address_id']."'");
    16 
     19}}}
    1720
    1821Der String "-- /includes/application_top.php" sollte aus den SQL-Befehlen entfernt werden und jeder Befehl mit dem Schlüsselwort "SELECT" in der jeweils nächsten Zeile beginnen.