Ignore:
Timestamp:
Aug 26, 2007, 3:45:47 PM (17 years ago)
Author:
george
Message:

Odstraneni hacku a carek z textu podminek sluzby

File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/register.php

    r19 r60  
    209209               
    210210        $terms = "<textarea rows=\'18\' cols=\'80\' readonly=\'readonly\'>";
     211        $terms_text = '';
    211212        $fp = fopen("mail_templates/terms.tpl", 'r') or die (error("Couldn't Open terms.tpl File!"));
    212         while (!feof($fp)) $terms .= fgets($fp, 1024);
     213        while (!feof($fp)) $terms_text .= fgets($fp, 1024);
    213214        fclose($fp);
    214         $terms .= "</textarea>";
     215        //$terms .= htmlentities($terms_text, ENT_QUOTES, 'cp1252')."</textarea>";
     216        $terms .= $terms_text."</textarea>";
     217       
    215218
    216219                makebutton($lang_register['create_acc_button'], "javascript:answerBox('{$lang_register['terms']}<br />$terms', 'javascript:do_submit_data()')",150);
Note: See TracChangeset for help on using the changeset viewer.