php.query icon indicating copy to clipboard operation
php.query copied to clipboard

Word selector did not match

Open imamura0825 opened this issue 9 years ago • 0 comments

private function _isContainWordSelector($node)

if (preg_match("/^\w+$/", $item) && $this->_value == $item) {

Proposed will...

if (preg_match("/^[^\s]+$/", $item) && $this->_value == $item) {

imamura0825 avatar Jul 16 '15 05:07 imamura0825