Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
fusiondirectory
fusiondirectory
Commits
6425ccf2
Verified
Commit
6425ccf2
authored
2 months ago
by
dockx thibault
Browse files
Options
Download
Patches
Plain Diff
fixing phpcs auto resolve
ficing phpcs auto resolve (locally)
parent
78e6eee3
dev
6344-template-issue-when-creating-a-template-with-empty-password-error-message-should-not-be-seen
6365-core-locking-mechanism-is-not-changing-the-mail-ressource-it-does-lock-the-mail-account
6365-core-when-lock-mechanism-is-trigger-the-user-should-not-be-editable-if-not-unlock
core-php8
master
fusiondirectory-1.5
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/class_IconTheme.inc
+13
-13
include/class_IconTheme.inc
with
13 additions
and
13 deletions
+13
-13
include/class_IconTheme.inc
+
13
−
13
View file @
6425ccf2
...
...
@@ -50,9 +50,9 @@ class IconThemeDir
* Defaults to 2 if not present. */
private
$Threshold
=
2
;
function
__construct
(
$infos
)
function
__construct
(
$infos
)
{
$this
->
Size
=
$infos
[
'Size'
];
$this
->
Size
=
$infos
[
'Size'
];
$this
->
MinSize
=
$infos
[
'Size'
];
$this
->
MaxSize
=
$infos
[
'Size'
];
foreach
([
'Type'
,
'MaxSize'
,
'MinSize'
,
'Threshold'
]
as
$key
)
{
...
...
@@ -67,7 +67,7 @@ class IconThemeDir
}
}
function
MatchesSize
(
$size
)
function
MatchesSize
(
$size
)
{
switch
(
$this
->
Type
)
{
case
'Fixed'
:
...
...
@@ -79,7 +79,7 @@ class IconThemeDir
}
}
function
SizeDistance
(
$size
)
function
SizeDistance
(
$size
)
{
switch
(
$this
->
Type
)
{
case
'Fixed'
:
...
...
@@ -108,10 +108,10 @@ class IconTheme
private
$path
;
private
$parent
;
function
__construct
(
$folder
,
$default_parent
)
function
__construct
(
$folder
,
$default_parent
)
{
$this
->
path
=
$folder
;
$datas
=
@
parse_ini_file
(
$folder
.
'/index.theme'
,
TRUE
,
INI_SCANNER_RAW
);
$datas
=
@
parse_ini_file
(
$folder
.
'/index.theme'
,
TRUE
,
INI_SCANNER_RAW
);
if
(
$datas
===
FALSE
)
{
throw
new
ThemeFileParsingException
(
'Error while parsing theme file'
);
}
...
...
@@ -131,13 +131,13 @@ class IconTheme
}
}
function
FindIcon
(
$context
,
$icon
,
$size
)
function
FindIcon
(
$context
,
$icon
,
$size
)
{
$context
=
strtolower
(
$context
);
return
$this
->
FindIconHelper
(
$context
,
$icon
,
$size
);
}
function
FindIconHelper
(
$context
,
$icon
,
$size
)
function
FindIconHelper
(
$context
,
$icon
,
$size
)
{
$filename
=
$this
->
LookupIcon
(
$context
,
$icon
,
$size
);
if
(
$filename
!=
NULL
)
{
...
...
@@ -163,7 +163,7 @@ class IconTheme
return
NULL
;
}
function
LookupIcon
(
$context
,
$iconname
,
$size
)
function
LookupIcon
(
$context
,
$iconname
,
$size
)
{
if
(
!
isset
(
$this
->
subdirs
[
$context
]))
{
return
NULL
;
...
...
@@ -187,7 +187,7 @@ class IconTheme
$filename
=
$this
->
path
.
'/'
.
$path
.
'/'
.
$iconname
.
'.'
.
$extension
;
if
(
file_exists
(
$filename
))
{
$closest_filename
=
$filename
;
$minimal_size
=
$sizedistance
;
$minimal_size
=
$sizedistance
;
}
}
}
...
...
@@ -207,7 +207,7 @@ class IconTheme
/* We store themes in the session. To do otherwise, override these methods. */
static
public
$session_var
=
'IconThemes'
;
static
public
function
loadThemes
(
$path
)
static
public
function
loadThemes
(
$path
)
{
$themes
=
[];
if
(
$dir
=
opendir
(
"
$path
"
))
{
...
...
@@ -228,7 +228,7 @@ class IconTheme
$_SESSION
[
static
::
$session_var
]
=
$themes
;
}
static
public
function
findThemeIcon
(
$theme
,
$context
,
$icon
,
$size
)
static
public
function
findThemeIcon
(
$theme
,
$context
,
$icon
,
$size
)
{
// We have to sanitize the $icon received from $_GET['icon']. Fixing vulnerability : CWE-35
...
...
@@ -246,7 +246,7 @@ class IconTheme
return
$_SESSION
[
static
::
$session_var
][
static
::
$default_theme
]
->
FindIcon
(
$context
,
$icon
,
$size
);
}
public
function
findTheme
(
$theme
)
public
function
findTheme
(
$theme
)
{
if
(
isset
(
$_SESSION
[
static
::
$session_var
][
$theme
]))
{
return
$_SESSION
[
static
::
$session_var
][
$theme
];
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets