Changeset 1789


Ignore:
Timestamp:
2000-12-13T19:50:21+13:00 (23 years ago)
Author:
sjboddie
Message:

The collector now only checks for perl before displaying the intro page.
This minimises the number of annoying console windows that get popped up
on windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/collectoraction.cpp

    r1783 r1789  
    996996  }
    997997
    998   // make sure we have perl
    999   if (!perl_ok()) {
     998  text_t &collector_page = args["cp"];
     999  text_t &collection = args["bc1dirname"];
     1000
     1001  // make sure we have perl (we'll only do this when entering
     1002  // the intro page to minimise the number of annoying console
     1003  // windows that get popped up on windows -- this should be ok
     1004  // for now as the intro page is the only access point into the
     1005  // collector)
     1006  if (collector_page == "intro" && !perl_ok()) {
    10001007    textout << outconvert
    10011008        << "<html>\n"
     
    10131020
    10141021  }
    1015 
    1016   text_t &collector_page = args["cp"];
    1017   text_t &collection = args["bc1dirname"];
    10181022
    10191023  if (collector_page == "bild") {
Note: See TracChangeset for help on using the changeset viewer.