PHP Classes

Error in v2/cssparser.php

Recommend this page to a friend!

      CSS parser  >  All threads  >  Error in v2/cssparser.php  >  (Un) Subscribe thread alerts  
Subject:Error in v2/cssparser.php
Summary:Incorrect use of left and right braces
Messages:1
Author:Gerry Kroll
Date:2022-10-23 18:06:31
 

  1. Error in v2/cssparser.php   Reply   Report abuse  
Picture of Gerry Kroll Gerry Kroll - 2022-10-23 18:06:35
Line 55 of v2/cssparser.php is:
$c = $code{$idx};

This should be
$c = $code[$idx];