Skip to content

Commit

Permalink
fixed deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
beck24 committed Jul 4, 2012
1 parent 82b55a8 commit 9119b99
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 16 deletions.
17 changes: 17 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
== Version History ==

1.4 (07/04/2012):

- Removed deprecation notice

1.3 (04/20/2012):

- Replace deprecated event hook registration

1.2 (04/07/2012):

- Fix issue with white screen during activation on some systems

1.0 (02/20/2012):

- Initial Release
5 changes: 1 addition & 4 deletions actions/delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,7 @@

// reset password to unusable password
$user->password = md5(substr(md5(microtime()), 0, 8));
// example.com tosses all email
// plus we'll be preventing mail from being sent to this user
// so we shouldn't be affecting them anyway
$user->email = "anon{$user->guid}@example.com";
$user->email = "anon{$user->guid}@" . get_site_domain();

// set our single piece of metadata that tells us this user has been deleted
$user->member_selfdelete = "anonymized";
Expand Down
10 changes: 0 additions & 10 deletions changelog.txt

This file was deleted.

4 changes: 3 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ that could be useful for admins to improve their site.

Installation:
Place this directory into the mod directory of your elgg installation.
Activate in the Tools Administration interface.
Activate in the Tools Administration interface.

plugin should reside in mod/member_selfdelete
2 changes: 1 addition & 1 deletion views/default/admin/users/member_selfdelete/reasons.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
$content = "<br>";

$content .= elgg_view('navigation/pagination',array(
'baseurl' => elgg_get_site_url() . "admin/users/member_selfdelete/reasons",
'base_url' => elgg_get_site_url() . "admin/users/member_selfdelete/reasons",
'offset' => $offset,
'count' => $total,
'limit' => $limit,
Expand Down

0 comments on commit 9119b99

Please sign in to comment.