Show
Ignore:
Timestamp:
02/28/06 09:21:36 (7 years ago)
Author:
max-horvath
Message:

"2006-02-28 Max Horvath <max.horvath@…>

  • the content selector for an owner could produce notices
  • the button add existing content in the content manager will only be shown if content is actually available
  • the start button on the portal page won't be shown anymore if a user didn't access it from a WiFiDog hotspot
  • deleted wifidog/templates/message_unknown_hotspot.html as this error message will be displayed using the genecir error message template
  • display of generic error messages will be handled by the MainUI class
  • deleted wifidog/portal/missing_original_url.php as its functions is being handled by wifidog/portal/index.php now
  • deleted wifidog/templates/message_default.html as its functions is being handled by wifidog/gw_message.php now
  • deleted wifidog/templates/message_activate.html as its functions is being handled by wifidog/gw_message.php now
  • account validation hints finally show the real validation grace time (used to display 15 minutes)
  • deleted wifidog/templates/message_denied.html as its functions is being handled by wifidog/gw_message.php now
  • deleted wifidog/templates/message_failed_validation.html as its functions is being handled by wifidog/gw_message.php now
  • deleted wifidog/templates/user_management_menu.html as its not being used anymore
  • deleted wifidog/local_content/default/footer.html as its not being used anymore
  • deleted wifidog/local_content/default/header.html as its not being used anymore
  • deleted wifidog/local_content/default/portal.html as its not being used anymore
  • deleted wifidog/local_content/default/new.css as its wasn't ever used
  • deleted wifidog/local_content/README as its content isn't valid anymore used anymore"
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/content/index.php

    r933 r979  
    6262    $node = Node :: getObject($_REQUEST['gw_id']); 
    6363 
    64 if ($node == null) 
    65 { 
    66     $smarty->assign("tech_support_email", Network::getCurrentNetwork()->getTechSupportEmail()); 
    67     $smarty->display("templates/message_unknown_hotspot.html"); 
     64if ($node == null) { 
     65    $ui = new MainUI(); 
     66    $ui->displayError(_("No Hotspot specified!")); 
    6867    exit; 
    6968}