Skip to content
Snippets Groups Projects
Unverified Commit 1b0f30b1 authored by Daniel Kesselberg's avatar Daniel Kesselberg
Browse files

The array and string offset access syntax using curly braces is deprecated.

parent d15ad1b5
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ class Util {
public function hexToRGB($color) {
$hex = preg_replace("/[^0-9A-Fa-f]/", '', $color);
if (strlen($hex) === 3) {
$hex = $hex{0} . $hex{0} . $hex{1} . $hex{1} . $hex{2} . $hex{2};
$hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2];
}
if (strlen($hex) !== 6) {
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment