Skip to content

Commit

Permalink
Fix bug in selection of measured PSFs.
Browse files Browse the repository at this point in the history
- The possibility to select from the available PSFs was not offered any more.
- The file server needed to set the default image extensions first. This call was missing.
  • Loading branch information
danielsevilla authored and aarpon committed May 9, 2014
1 parent 74b08e3 commit f33c37e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion select_images.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,12 @@

$script = array( "settings.js","ajax_utils.js" );

// All the user's files in the server.
$_SESSION['fileserver']->resetFiles();

/* Set the default extensions. */
$_SESSION['fileserver']->imageExtensions();

// All the user's files in the server.
$allFiles = $_SESSION['fileserver']->listFiles(TRUE);

// All the user's series in the server.
Expand Down

0 comments on commit f33c37e

Please sign in to comment.