Minimum version: Midgard 1.0
Updates the style record with id id with the provided parameters.
Returns TRUE if successful. Returns FALSE on failure.
| 
<?php
 $id    = 123;
 $name  = "EvenGreaterStyle";
 $owner = 13;
 if(mgd_update_style($id)) {
   echo "Style updated.";
 } else {
   echo "failed to update style.";
 }
?>
 |