Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Michael <me@mynetx.net>2012-04-20 00:32:51 +0400
committerJo Michael <me@mynetx.net>2012-04-20 00:32:51 +0400
commitc0329abd23de1dbbd7796de3b7ef9e7ec4ecae01 (patch)
treef1403d30bf00af3794041fdcd0e9dc5902e90ea0 /config.sample.inc.php
parent65cbcd200fead9b3fc8a40c62c01fb50965cfa2b (diff)
rfe #3518852 [edit] edit blob but not other binary, new option $cfg['ProtectBinary'] = 'noblob'
Diffstat (limited to 'config.sample.inc.php')
-rw-r--r--config.sample.inc.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/config.sample.inc.php b/config.sample.inc.php
index 9c12ef6b3d..69bc6242d5 100644
--- a/config.sample.inc.php
+++ b/config.sample.inc.php
@@ -89,9 +89,10 @@ $cfg['SaveDir'] = '';
/**
* disallow editing of binary fields
* valid values are:
- * false allow editing
- * 'blob' allow editing except for BLOB fields
- * 'all' disallow editing
+ * false allow editing
+ * 'blob' allow editing except for BLOB fields
+ * 'noblob' disallow editing except for BLOB fields
+ * 'all' disallow editing
* default = blob
*/
//$cfg['ProtectBinary'] = 'false';