Changeset 4809


Ignore:
Timestamp:
2003-06-25T15:39:26+12:00 (21 years ago)
Author:
kjdon
Message:

the paragraph tag has changed to Para. this is set in the mgppbuilder.pm and mgppbuildproc.pm modules - it its changed there, it needs to be changed here

File:
1 edited

Legend:

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

    r4780 r4809  
    743743  bool has_paras = false;
    744744  while (thisvalue != endvalue) {
    745     if (*thisvalue == "Paragraph") {
     745    if (*thisvalue == "Para") {
    746746      has_paras = true;
    747747      break;
     
    754754    // we will only have one value, but we will still put it in as a text string
    755755    int opt = 0;
    756     if (option.validValues[0] == "Paragraph") {
     756    if (option.validValues[0] == "Para") {
    757757      opt = 1;
    758758    }
     
    769769 
    770770  while (thisvalue != endvalue) {
    771     if (*thisvalue != "Paragraph") {
     771    if (*thisvalue != "Para") {
    772772      macrovalue += "<option value=\"" + *thisvalue + "\"";
    773773      if (*thisvalue == current_value)
Note: See TracChangeset for help on using the changeset viewer.