Admin: Table select not showing

K

Ken Power

Guest
Line 404 of admin.php uses a short tag (<?) to start the PHP code block. This causes the table drop down list to not appear on the admin screen when short tags are not enabled. Change line 404 to
<?php echo $change_table_select; ?>
 
K

Ken Power

Guest
Some additional places where <? needed changed to <?php (this is with the current version of DaDaBIK, 2.1b beta):
footer.php - line 70
footer_index.php - line 58
 
E

Eugenio

Guest
Ken Power wrote:
>
> Some additional places where <? needed changed to <?php (this
> is with the current version of DaDaBIK, 2.1b beta):
> footer.php - line 70
> footer_index.php - line 58

Thanks for the information, I'll change them.

Eugenio.

(Latest version of DaDaBIK when this message was posted: 2.2.1)
 
Top