asikart / remoteimage

Asikart RemoteImage helps you manage Joomla CMS image and media files on local and remote FTP host.
http://ext.asikart.com/extensions/asikart-remoteimage.html
10 stars 11 forks source link

Bug in php 7.3 #100

Open jq153387 opened 4 years ago

jq153387 commented 4 years ago

Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in \libraries\windwalker\vendor\windwalker\filesystem\Iterator\ArrayObject.php on line 454

Image 032

foreach ($ar as $k => $v) {
  switch ($k) {
        case 'flag':
            $this->setFlags($v);
            break;
        case 'storage':
            $this->exchangeArray($v);
            break;
        case 'iteratorClass':
            $this->setIteratorClass($v);
            break;
        case 'protectedProperties':
            continue 2;  //"continue" uses "continue 2" to resolve this error
        default:
            $this->__set($k, $v);
    }
}