Commit 43d72c4f authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Fixes #4912 Fixing PHP error in IconTheme

Showing with 3 additions and 0 deletions
+3 -0
......@@ -133,6 +133,9 @@ class IconTheme
function LookupIcon($context, $iconname, $size)
{
if (!isset($this->subdirs[$context])) {
return NULL;
}
foreach ($this->subdirs[$context] as $path => &$subdir) {
if ($subdir->MatchesSize($size)) {
foreach (self::$extensions as $extension) {
......
  • bmortier @bmortier

    mentioned in issue #1561

    By dcpc007 on 2017-09-02T15:30:40 (imported from GitLab)

    ·

    mentioned in issue #1561

    By dcpc007 on 2017-09-02T15:30:40 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment