Don't link NULL foreign key values

This commit is contained in:
Jakub Vrana 2014-01-10 20:42:01 -08:00
parent 0830f5ce89
commit 4183f73548
2 changed files with 2 additions and 1 deletions

View file

@ -370,7 +370,7 @@ if (!$columns && support("table")) {
if (preg_match('~blob|bytea|raw|file~', $field["type"]) && $val != "") {
$link = ME . 'download=' . urlencode($TABLE) . '&field=' . urlencode($key) . $unique_idf;
}
if (!$link) { // link related items
if (!$link && $val !== null) { // link related items
foreach ((array) $foreign_keys[$key] as $foreign_key) {
if (count($foreign_keys[$key]) == 1 || end($foreign_key["source"]) == $key) {
$link = "";

View file

@ -3,6 +3,7 @@ Fix compiled version of Elasticsearch
Don't use type=number if a SQL function is used
Disable highlighting in textareas with long texts
Don't autofocus SQL textarea in Firefox
Don't link NULL foreign key values
MongoDB: Count tables, display ObjectIds, sort, limit, offset, count rows
Elasticsearch: Create and drop DB, drop table