From 9aac630f6b8b1ba013022da09c08fe85f19ba566 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 4 Oct 2008 12:05:00 +0000 Subject: [PATCH] rfe #1276463 [search] Search empty/not empty values --- ChangeLog | 1 + libraries/config.default.php | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 339582c1a..b05947213 100644 --- a/ChangeLog +++ b/ChangeLog @@ -26,6 +26,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA thanks to Xuefer - xuefer - patch #2122883 [PDF schema] Option to display just the keys, thanks to Samuel Sol Villar dos Santos - yohanleafheart ++ rfe #1276463 [search] Search empty/not empty values 3.0.1.0 (not yet released) - bug #2134126 [GUI] SQL error after sorting a subset diff --git a/libraries/config.default.php b/libraries/config.default.php index 28a139d55..63c90da07 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2762,6 +2762,8 @@ $cfg['TextOperators'] = array( '!=', 'REGEXP', 'NOT REGEXP', + "= ''", + "!= ''" ); /** @@ -2802,6 +2804,8 @@ $cfg['NullOperators'] = array( $cfg['UnaryOperators'] = array( 'IS NULL' => 1, 'IS NOT NULL' => 1, + "= ''" => 1, + "!= ''" => 1 ); ?>