From 9f3b27d8616cc75e5d1591a6fefec15966b4f78d Mon Sep 17 00:00:00 2001 From: Arthur Portugal Date: Tue, 12 May 2009 22:18:50 +0200 Subject: [PATCH] [svn r20563] Minor - Fixed 2. Home page in FS#3772 (by rvelasquez) --- index.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index 62b97ea485..ef5c4ad8e6 100644 --- a/index.php +++ b/index.php @@ -1,4 +1,4 @@ -, Ghent University, Refactoring -* @version $Id: index.php 20297 2009-05-04 20:32:16Z juliomontoya $ +* @version $Id: index.php 20563 2009-05-12 20:18:50Z aportugal $ * @todo check the different @todos in this page and really do them * @todo check if the news management works as expected */ @@ -445,6 +445,7 @@ function display_anonymous_right_menu() { // help ection /*** hide right menu "general" and other parts on anonymous right menu *****/ + /** General -> Forum. Should disappear (not relevant for end user) echo "
", "".get_lang("MenuGeneral").""; echo "'; echo '
'; - + **/ if ($_user['user_id'] && api_number_of_plugins('campushomepage_menu') > 0) { echo '
'; api_plugin('campushomepage_menu'); @@ -534,7 +535,7 @@ function display_login_form() $form = new FormValidator('formLogin'); $form->addElement('text','login',get_lang('UserName'),array('size'=>17)); $form->addElement('password','password',get_lang('Pass'),array('size'=>17)); - $form->addElement('style_submit_button','submitAuth',get_lang('langEnter'),'class="login"'); + $form->addElement('style_submit_button','submitAuth',get_lang('langEnter'), array('class'=>'login', 'style'=>'float:left')); $renderer =& $form->defaultRenderer(); $renderer->setElementTemplate('
{element}
'); $form->display();