Changeset 440

Show
Ignore:
Timestamp:
04/02/07 15:56:48 (2 years ago)
Author:
Gregor
Message:

edit.php: Fixed a bug with # in blocks.

index.php: Display results.html if applicable.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/dsss-smi/edit.php

    r237 r440  
    9090    $indat = escapeshellcmd($indat); 
    9191    $indat = str_replace("\\\n", "\n", $indat); 
     92    $indat = str_replace("\\#", "#", $indat); 
     93 
    9294    $inlines = explode("\n", $indat); 
    9395    foreach ($inlines as $line) { 
  • branches/dsss-smi/index.php

    r103 r440  
    4545<input type='submit' value='Register'> 
    4646</form> 
     47 
     48<hr> 
     49 
     50<?PHP 
     51if (file_exists("results.html")) { 
     52?> 
     53<a href='results.html'>Results of DSSS test builds</a> 
     54<?PHP 
     55} 
     56?> 
     57</body> 
     58</HTML>