mgd_update_topic
mgd_update_topic -- Update a topic
Description
`bool **mgd_update_topic** (int id, string name, string description, string extra, int owner, string code)`
Minimum version: Midgard 1.1.1
Updates the topic record with id id with the provided parameters.
Returns TRUE if successful. Returns FALSE on failure.
<?php
$upd = mgd_update_topic(17,'Midgard Improved Manual',
'A topic update example',
'Extra free form information',
1,'<?php phpinfo(); ?>');
?>
