// added for QUICKUPDATES_NEW_COLUMN_1
// look in admin/quick_updates.php for "added for QUICKUPDATES_NEW_COLUMN_1" to see what has been added, to make quick_updates support this extra column.
// (In my case I added "products_artlid" because I wanted to store the article id's from my main supplier into my database)
// Enable/disable the new column
define('QUICKUPDATES_MODIFY_NEW_COLUMN_1',
'false');
// The name of the column you added to your database products table
// (note: all other columns are not defined but hard coded, so this is the only "easy user configurable" column)
define('QUICKUPDATES_NEW_COLUMN_1',
'products_artlid');
// The table heading text for this extra column (actually belongs in the language file)
define('TABLE_HEADING_NEW_COLUMN_1', '
artlid');
?>