index.php 380 B

123456789101112131415
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.messages
  5. */
  6. /**
  7. * Code
  8. */
  9. require_once '../inc/global.inc.php';
  10. if (api_get_setting('allow_social_tool')=='true' && api_get_setting('allow_message_tool')=='true') {
  11. header('Location:inbox.php?f=social');
  12. } elseif ( api_get_setting('allow_message_tool')=='true') {
  13. header('Location:inbox.php');
  14. }
  15. exit;