Projects
Kolab:Winterfell
roundcubemail
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 13
View file
roundcubemail.spec
Changed
@@ -43,7 +43,7 @@ Name: roundcubemail Version: 1.2 -Release: 0.20160309.git%{?dist} +Release: 0.20160314.git%{?dist} Summary: Round Cube Webmail is a browser-based multilingual IMAP client
View file
debian.changelog
Changed
@@ -1,4 +1,4 @@ -roundcubemail (1:1.2~dev20160309-0~kolab1) unstable; urgency=low +roundcubemail (1:1.2~dev20160314-0~kolab1) unstable; urgency=low * fix secure URL regex for debian
View file
roundcubemail-1.2.tar.gz/program/include/rcmail_install.php
Changed
@@ -568,26 +568,30 @@ * Return a list with available subfolders of the plugins directory * (with their associated description in composer.json) */ - function list_plugins() + function list_plugins() { $plugins = array(); $plugin_dir = INSTALL_PATH . 'plugins/'; - foreach (glob($plugin_dir . '*') as $path) - { + foreach (glob($plugin_dir . '*') as $path) { + if (!is_dir($path)) { + continue; + } - if (is_dir($path) && is_readable($path.'/composer.json')) - { - $file_json = json_decode(file_get_contents($path.'/composer.json')); + if (is_readable($path.'/composer.json')) { + $file_json = json_decode(file_get_contents($path.'/composer.json')); $plugin_desc = $file_json->description ?: 'N/A'; } - else - { + else { $plugin_desc = 'N/A'; } - $name = substr($path, strlen($plugin_dir)); - $plugins[] = array('name' => $name, 'desc' => $plugin_desc, 'enabled' => in_array($name, $this->config['plugins'])); + $name = substr($path, strlen($plugin_dir)); + $plugins[] = array( + 'name' => $name, + 'desc' => $plugin_desc, + 'enabled' => in_array($name, (array) $this->config['plugins']) + ); } return $plugins;
View file
roundcubemail.dsc
Changed
@@ -2,7 +2,7 @@ Source: roundcubemail Binary: roundcubemail Architecture: all -Version: 1:1.2~dev20160309-0~kolab1 +Version: 1:1.2~dev20160314-0~kolab1 Maintainer: Debian Roundcube Maintainers <pkg-roundcube-maintainers@lists.alioth.debian.org> Uploaders: Vincent Bernat <bernat@debian.org>, Romain Beauxis <toots@rastageeks.org>, Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>, Paul Klos <kolab@klos2day.nl> Homepage: http://www.roundcube.net/
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.