Login block is not shown on drupal 6

vj0914 - October 24, 2008 - 18:43
Project:Dark Green Theme
Version:6.x-1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active
Description

I found there is a bug for displaying user login block.

and the solution is

replace flowing

<?php
if ($sidebar_left) {
?>

<?php
print $sidebar_left
?>

<?php
}
?>

with

<?php
if ($left) {
?>

<?php
print $left
?>

<?php
}
?>

 
 

Drupal is a registered trademark of Dries Buytaert.