[Jderobot-admin] Problema extensión AccessControl de mediawiki

Borja Mon Serrano borjamonserrano en gmail.com
Sab Dic 7 14:21:38 CET 2013


Hola!

 ¿Podrías probar esta pequeña ñapa ("workarround" para los angloparlantes)
> para ver si soluciona el problema?
>
> Pasar de...
>
>    $gt = $Title->makeTitle( 0, $skupina );
>
>    if ( method_exists( 'WikiPage', 'getContent' ) ) {
>        $groupPage = new WikiPage( $gt );
>        $allowedUsers = $groupPage->getContent()->getNativeData();
>    } else {
>        // create Article and get the content
>        $groupPage = new Article( $gt, 0 );
>        $allowedUsers = $groupPage->fetchContent( 0 );
>    }
>
>
> A...
>
>    $gt = $Title->makeTitle( 0, $skupina );
>
>    if ( method_exists( 'WikiPage', 'getContent' ) ) {
>        $groupPage = new WikiPage( $gt );
>        $contenido = $groupPage->getContent();
>        if ($contenido !== NULL) {
>          $allowedUsers = $contenido->getNativeData();
>        } else {
>          $allowedUsers = '';
>        }
>        unset($contenido);
>
>    } else {
>        // create Article and get the content
>        $groupPage = new Article( $gt, 0 );
>        $allowedUsers = $groupPage->fetchContent( 0 );
>    }
>

Hecho! Ahora al menos no termina directamente, tal y como comentas,
devolviendo una página en blanco. Ahora lo que pasa es que para un usuario
logueado ocurre lo mismo que si no estuviera logueado, es decir, el mensaje
este que salía antes que decía "[b5c65bf7] 2013-12-07 13:16:56: Fatal
exception of type MWException".

Un saludo,

Borja.
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: http://gsyc.escet.urjc.es/pipermail/jderobot-admin/attachments/20131207/6a8bc4c1/attachment.htm 


More information about the Jderobot-admin mailing list