Quote:
Originally Posted by KirbyDE
At least in 3.0.7 and 3.5.0 Beta 2 a call to build_datastore() without arguments does nothing.
|
It does nothing in any version of 3.0.x I have (3.0.1 +) the code is the same in all - basically ;
PHP Code:
function build_datastore($title = '', $data = '')
{
if ($title != '')
{
* DO STUFF *
}
}
So if no parameters are supplied, it does nothing.