From 02b3898e8f088f50279d860f6c12fb02ee360963 Mon Sep 17 00:00:00 2001 From: Neil Drumm <drumm@3064.no-reply.drupal.org> Date: Wed, 23 Aug 2006 04:44:36 +0000 Subject: [PATCH] #80150 by webchick. Cleanup from #76666. --- modules/block/block.module | 2 +- modules/system/system.install | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/block/block.module b/modules/block/block.module index ecba6810cea6..9aed0dca5142 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -122,7 +122,7 @@ function block_block($op = 'list', $delta = 0, $edit = array()) { case 'list': $blocks = array(); - $result = db_query("SELECT bid, title, info FROM {boxes} bx INNER JOIN {blocks} bl ON bx.bid = bl.delta WHERE module = 'block' ORDER BY title"); + $result = db_query("SELECT bid, bl.title, info FROM {boxes} bx INNER JOIN {blocks} bl ON bx.bid = bl.delta WHERE module = 'block' ORDER BY title"); while ($block = db_fetch_object($result)) { $blocks[$block->bid]['info'] = $block->info ? check_plain($block->info) : check_plain($block->title); } diff --git a/modules/system/system.install b/modules/system/system.install index ef59aef5ee54..5753fe20549d 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -38,7 +38,6 @@ function system_install() { db_query("CREATE TABLE {boxes} ( bid tinyint NOT NULL auto_increment, - title varchar(64) NOT NULL default '', body longtext, info varchar(128) NOT NULL default '', format int NOT NULL default '0', -- GitLab