| 1 | <?php
|
|---|
| 2 | /* -----------------------------------------------------------------------------------------
|
|---|
| 3 | $Id$
|
|---|
| 4 |
|
|---|
| 5 | modified eCommerce Shopsoftware
|
|---|
| 6 | http://www.modified-shop.org
|
|---|
| 7 |
|
|---|
| 8 | Copyright (c) 2009 - 2013 [www.modified-shop.org]
|
|---|
| 9 | -----------------------------------------------------------------------------------------
|
|---|
| 10 | Released under the GNU General Public License
|
|---|
| 11 | ---------------------------------------------------------------------------------------*/
|
|---|
| 12 | chdir('../../');
|
|---|
| 13 | include('includes/application_top.php');
|
|---|
| 14 |
|
|---|
| 15 | if (!isset($_SESSION['customer_id'])) {
|
|---|
| 16 | die('Currently not available');
|
|---|
| 17 | }
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 | if ($_POST['comments_added'] != '')
|
|---|
| 21 | $_SESSION['comments'] = xtc_db_prepare_input($_POST['comments']);
|
|---|
| 22 | ?>
|
|---|