diff --git a/index.php b/index.php index bedf6d2ed1..3e2dac9143 100644 --- a/index.php +++ b/index.php @@ -1,4 +1,4 @@ -, Ghent University, Refactoring -* @version $Id: index.php 18299 2009-02-06 20:56:44Z juliomontoya $ +* @version $Id: index.php 18379 2009-02-09 20:42:34Z juliomontoya $ * @todo check the different @todos in this page and really do them * @todo check if the news management works as expected */ @@ -436,22 +436,38 @@ function display_anonymous_right_menu() { echo ''; } - echo "
"; + //display_create_course_link(); + $show_menu=true; + $show_create_link=true; + } + if (api_is_platform_admin() || api_is_course_admin() || api_is_allowed_to_create_course()) { + $show_menu=true; + $show_course_link=true; + } else { + if (api_get_setting('allow_students_to_browse_courses')=='true') { + $show_menu=true; + $show_course_link=true; + } + } + + if ($show_menu){ + echo " "; + } } diff --git a/user_portal.php b/user_portal.php index c60f508110..4676659850 100644 --- a/user_portal.php +++ b/user_portal.php @@ -1,4 +1,4 @@ -'; -echo ' '; -echo ' '; -echo ''; +if ($show_menu){ + echo ' '; +} + // plugins for the my courses menu if (isset($_plugins['mycourses_menu']) && is_array($_plugins['mycourses_menu'])) {