---------------------------------
Update 07.09.2011 by amaische
Based on :	ask_a_question-final_2.4.1

Files updated:	/catalog/ask_a_question.php
                /catalog/product_info.php
 
only delta

After installing osc 2.3.1 make the following changes:
-----------------------------

1.

- Upload the changed file ask_a_question.php


2. 

catalog/product_info.php

*** find ***
<?php
    if ((USE_CACHE == 'true') && empty($SID)) {
      echo tep_cache_also_purchased(3600);
    } else {
      include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
    }
?>

*** add after ***

  <div>
    <table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
    <tr class="infoBoxContents">
      <td>
        <table border="0" width="100%" cellspacing="0" cellpadding="2">
        <tr>
          <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
          <td>
<?php
            echo '<a href="' . tep_href_link(FILENAME_ASK_QUESTION, 'products_id='.$product_info['products_id']) . '">' . tep_image_button('person.jpg', TEXT_ASK_QUESTION) . '</a>';
?>
          </td>
        </tr>
        </table>
      </td>
    </tr>
    </table>
  </div
