Skip to content

Commit

Permalink
Fix line 346 in domains.php - first mail() arguemnt was _REQUEST['ues…
Browse files Browse the repository at this point in the history
…rname'], no longer valid
  • Loading branch information
shupp committed Jun 14, 2006
1 parent 0fea443 commit d2395da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG
@@ -1,5 +1,7 @@
* 0.9.9.2 6/13/2006 * 0.9.9.2 6/14/2006
- Bill Shupp (hostmaster@shupp.org) - Bill Shupp (hostmaster@shupp.org)
- Fixe wrong mail() argument in domains.php

- Added Robin Bowes changes - Added Robin Bowes changes
- Change error_reporting to E_ALL - Change error_reporting to E_ALL
- Add "-R" to the tcpclient command. - Add "-R" to the tcpclient command.
Expand Down
2 changes: 1 addition & 1 deletion src/domains.php
Expand Up @@ -343,7 +343,7 @@
$body .= "\n\nThanks,\n\n"; $body .= "\n\nThanks,\n\n";
$body .= "VegaDNS"; $body .= "VegaDNS";


mail(strtolower($_REQUEST['username']),"New Inactive Domain Created",$body mail($email,"New Inactive Domain Created",$body
, "Return-path: $supportemail\r\nFrom: \"$supportname\" <$supportemail>"); , "Return-path: $supportemail\r\nFrom: \"$supportname\" <$supportemail>");


set_msg("Domain $domain added successfully!"); set_msg("Domain $domain added successfully!");
Expand Down

0 comments on commit d2395da

Please sign in to comment.