Tabla de Contenidos

FIXING PLUGINS

EPUB

https://github.com/Jack28/epub/ Se modifica la cabecera 202606291104action.tgz. Cambiando este action por el que viene, el plugin deja de dar errores. Si se mantiene este mensaje es que fue funcional porque no viene a cambiarlo (2026.06.29)

b13a8ea6766ae91d5f62ceb3003348781ec51bd03a0b4863ea976af726d34fd72e31ab50431fac0fcc4b90c5017673bc349290735396737d1b86f78370662b83 *202606291104action.tgz

PDFJS

Warning: Undefined array key 1 in F:\xampp\0cms\dkCT\lib\plugins\pdfjs\syntax.php on line 66

Warning: Undefined array key 1 in F:\xampp\0cms\dkCT\lib\plugins\pdfjs\syntax.php on line 78
sintax.php
// Código de la línea 66 en adelante (Corregido)
    $display_parts = explode('?disp=', $link, 2);
    list($idzoom, $display) = $display_parts + [0 => null, 1 => null];
 
    $display = trim($display);
    //get the display
    if($display) {
        if(in_array($display, $this->display_opts)) {
            $opts['display'] = $display;
        } else {
            msg('pdfjs: unknown display: ' . $display, -1);
        }
    }
 
    //get the zoom (Línea 78 corregida)
    $zoom_parts = explode('?', $idzoom, 2);
    list($id, $zoom) = $zoom_parts + [0 => null, 1 => null];
 
    if($zoom) {
        if(in_array($zoom, $this->zoom_opts)) {
            $opts['zoom'] = $zoom;
        } else {
            msg('pdfjs: unknown zoom: ' . $zoom, -1);
        }
    }