mgd_move_topic

Name

mgd_move_topic -- Move a topic

Synopsis

bool mgd_move_topic(int id, int target_topic);

Description

Minimum version: Midgard 1.4 (Bifrost)

Moves topic with id id under topic with id target_topic.

Returns true if successfull. Returns false on failure.

Example

<?php
  $topic  = 17;
  $target = 13;
 mgd_move_topic($topic, $target);
?>