mgd_move_topic

(Midgard 1.4.2 'Bifrost')

mgd_move_topic -- Move a topic

Description

bool mgd_move_topic (int id, int target_topic)

Minimum version: Midgard 1.4 (Bifrost)

Moves topic with id id under topic with id target_topic.

Returns TRUE if successful. Returns FALSE on failure.


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