Ignore:
Timestamp:
Jan 28, 2011, 10:22:28 PM (13 years ago)
Author:
tiico
Message:
  • Correct hour/min bug when time is set to 00h00 and control coherence between end and begin dates/hours
  • Correct export to csv file (utf8decode)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/ConcoursPhoto/admin/admin.php

    r8946 r8965  
    4242$tabsheet->assign();
    4343
     44if (isset($_GET['concours']))
     45{
     46    // Get informations from base for concours_id
     47    $concours = new Concours($_GET['concours']);
     48}
     49
     50
     51// Add informations from previous pages if present
     52if (isset($_GET['infos']) && isset($concours))
     53{
     54  $infos = $_GET['infos'];
     55  switch($infos)
     56  {
     57    case "0" :
     58    array_push($page['infos'],  sprintf( l10n('concours_saved'), $concours->concours_id, $concours->concours_infos['name']));
     59    break;
     60
     61    }
     62           
     63}
     64
    4465
    4566// Include file
Note: See TracChangeset for help on using the changeset viewer.