RE: About small image size...
M@rcel <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.devel |
|---|---|
| Message-ID | <f05739354014129371ba484ace644b61@osCommerce-Forums> |
This message was sent from: Development
http://forums.oscommerce.com/viewtopic.php?p=158353#158353
----------------------------------------------------------------
They are defined in admin and are loaded (like all other parameters) on each pageload with this code in catalog/includes/application_top.php:
[code]
// set the application parameters
$configuration_query = tep_db_query('select configuration_key as cfgKey, configuration_value as cfgValue from ' . TABLE_CONFIGURATION);
while ($configuration = tep_db_fetch_array($configuration_query)) {
define($configuration['cfgKey'], $configuration['cfgValue']);
}
[/code]