Hi Boofo!!
Thank you very very much for your help this has been driving me insane for hours.
I still cant get it going though...
In my test, this cron builds the datastore:
Code:
<?php
$kwdStr="I will not show at the end of every post!";
build_datastore('glossary_links', serialize($kwdStr),1);
?>
and in postbit_display_complete I run this code
Code:
if (method_exists($vbulletin->datastore,'do_fetch'))
{ // Datastore extension exists, use it
$vbulletin->datastore->do_fetch('glossary_links',$errors);
if ($errors[0])
{ // Fetch failed, use original datastore
$vbulletin->datastore->do_db_fetch("'glossary_links'");
}
}
else
{ // No extension, use original datastore
$vbulletin->datastore->do_db_fetch("'glossary_links'");
}
$glossary_links = $vbulletin->glossary_links;
$this->post['message'] .= $glossary_links;
Nothing has come through - the datastore should be appended to the end of every post (I've tested that code also with a normal string.. eg. I can append hello to every post with $this->post['message'] .= "hello"
Am I doing something wrong when I try and output the data? It's a plain string I am storing in the datastore, not an array or anything.