Page 5 of 5

Re: CMSimple_XH 1.7.0

Posted: Tue Sep 19, 2017 7:24 am
by utaka
Hi,
Not ,PNG images --> GIF images
cmb wrote: [*]A template can now ship an own set of language flag icons; simply put respective PNG images into the flags/ subfolder of the template. Missing icons are taken from the default location (userfiles/images/flags/).

Code: Select all

        $url = $pth['folder']['base']
            . ($lang == $cf['language']['default'] ? '' : $lang . '/');
        $img = $pth['folder']['templateflags'] . $lang . '.gif';
        if (!file_exists($img)) {
            $img = $pth['folder']['flags'] . $lang . '.gif';
        }
https://github.com/cmsimple-xh/cmsimple ... s.php#L611

Re: CMSimple_XH 1.7.0

Posted: Tue Sep 19, 2017 7:59 am
by cmb
utaka wrote:Not ,PNG images --> GIF images
Thanks! Fixed.

Re: CMSimple_XH 1.7.0

Posted: Wed Sep 20, 2017 10:23 am
by utaka
Hi,
I'm writing commentary(for Ver1.7) in Japanese.
It is a detailed check..Insignificant..

$pd_router->addTab() to $pd_router->add_tab()

Plugin Developers's List15
cmb wrote: [*]$pd_router->addTab() accepts an optional third parameter which allows to specify a CSS class which is set on the page data tab, so you can easily style individual tab labels.

Re: CMSimple_XH 1.7.0

Posted: Wed Sep 20, 2017 10:46 am
by cmb
utaka wrote:$pd_router->addTab() to $pd_router->add_tab()
Thanks for the careful review! :) I've fixed that now in the English and German release announcement.