The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
|||
|
|||
How does that answer my question??
It does not matter what you do with it, but serializing is an array operation, not a string operation. |
#12
|
||||
|
||||
I understand. I'm just telling you what I think he is trying to do, not what is the right way to do it.
|
#13
|
|||
|
|||
hi, ok I didnt know what serialize was for arrays or not... either way I tried it without serialize.
Please try and reproduce this:- try this as a cron file:- Code:
$kwdStr="I will not show at the end of every post!"; build_datastore('glossary_links', $kwdStr); Code:
$this->post['message'] .= $vbulletin->glossary_links; I tried swopping the plugin for 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; but still nothing. Does anyone know why this isnt working and importantly how to fix it? |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|