Boofo
04-14-2011, 03:49 PM
Is there a way to pull the datastore prefix for a variable in the datastore like they do with the table_prefix? I tried this but it doesn't work:
$new_datastore_fetch[] = " . DATASTORE_PREFIX . "boofocounter;
I got a report from someone that the counter didn't work. It turned out they had a datastore prefix set in the config file:
$config['Datastore']['prefix'] = 'something';
Once they removed the prefix, the counter started working.
$new_datastore_fetch[] = " . DATASTORE_PREFIX . "boofocounter;
I got a report from someone that the counter didn't work. It turned out they had a datastore prefix set in the config file:
$config['Datastore']['prefix'] = 'something';
Once they removed the prefix, the counter started working.