Ejemplo n.º 1
0
/**
 * When wiki is disabled or changed into the redirect, remove all messages from that wiki
 * User won't be able to do this by his own
 */
function SiteWideMessagesPublicStatusChange($city_public, $city_id, $reason = '')
{
    if ($city_public == 0 || $city_public == 2) {
        SiteWideMessages::deleteMessagesOnWiki($city_id);
    }
    return true;
}