Skip to content
This repository has been archived by the owner on Sep 14, 2020. It is now read-only.

Fix for Delimiter must not be alphanumeric or backslash when running … #260

Open
wants to merge 1 commit into
base: 0.9.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/code/community/BL/CustomGrid/Helper/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ protected function _getExceptionsListConfig($key)

protected function _matchGridAgainstException($exception, $blockType, $rewritingClassName)
{
return (preg_match($exception['block_type'], $blockType)
&& preg_match($exception['rewriting_class_name'], $rewritingClassName));
return (strpos($exception['block_type'], $blockType)
&& strpos($exception['rewriting_class_name'], $rewritingClassName));
}

public function addGridToExclusionsList($blockType, $rewritingClassName, $reinit=false)
Expand Down