Wenn ich im Admin unter WEB-Shop Module meinen Google XML Datenfeed starte, kommt oben immer diese Fehlermeldung:
Code: Alles auswählen
Parse error: syntax error, unexpected '', '' (T_CONSTANT_ENCAPSED_STRING), expecting ')' in /home/www/web282/html/naturshop/admin/module_export.php(216) : eval()'d code on line 1
Module
Code: Alles auswählen
<?php
/** ----------------------------------------------------------------------------
**
*F module_export.php
**
** WEB-Shop-Software http://www.webs.de
**
** Language manager
**
** ----------------------------------------------------------------------------
** based on:
** (c) 2000-2001 The Exchange Project
** (c) 2002-2003 osCommerce
** (c) 2003 nextcommerce
** (c) 2006 XT-Commerce
**
** Released under the GNU General Public License
**
** @version $Id: module_export.php 2175 2011-09-13 08:41:35Z xantiva $
** @copyright 2011 WEB-Shop Software http://www.webs.de/
**
** ------------------------------------------------------------------------- */
require('includes/application_top.php');
// include needed functions (for modules)
require_once(DIR_WS_FUNCTIONS . 'export_functions.php');
if (!is_writeable(DIR_FS_CATALOG . 'export/')) {
$messageStack->add(ERROR_EXPORT_FOLDER_NOT_WRITEABLE, 'error');
}
$module_type = 'export';
$module_directory = DIR_WS_MODULES . 'export/';
$module_key = 'MODULE_EXPORT_INSTALLED';
$file_extension = '.php';
define('HEADING_TITLE', HEADING_TITLE_MODULES_EXPORT);
if (isset($_GET['error'])) {
$map='error';
if ($_GET['kind']=='success') $map='success';
$messageStack->add($_GET['error'], $map);
}