Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Crizz0 committed Sep 25, 2019
1 parent e422767 commit 661bf85
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"IP anonymised" extension for phpBB 3.2
======
This phpBB extension will anonymise the user's IP in posts, topics etc.
This phpBB extension will anonymise the user's IP in posts, logs, sessions etc.

Author: Christian Schnegelberger

URL: https://www.crizzo.de

Version: v1.0.0-dev
Version: v1.0.0
2 changes: 1 addition & 1 deletion acp/ipanonym_info.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function module()
return array(
'filename' => '\crizzo\ipanonym\acp\ipanomym_module',
'title' => 'ACP_IP_ANONYM_TITLE',
'version' => '1.0.0-dev',
'version' => '1.0.0',
'modes' => array(
'ipanonym_settings' => array(
'title' => 'ACP_IP_ANONYM_SETTINGS',
Expand Down
10 changes: 5 additions & 5 deletions acp/ipanonym_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ public function main($id, $mode) {
}

$template->assign_vars(array(
'ERRORS' => $error,
'U_ACTION' => $this->u_action,
'ERRORS' => $error,
'U_ACTION' => $this->u_action,

'IP_ANONYM_ENABLED' => $config['crizzo_ipanonym_enable'],
'IP_ANONYM_MAX_AGE_VALUE' => $config['crizzo_ipanonym_max_age'],
'ACP_IP_ANONYM_QUERY_RUNS_VALUE' => $config['crizzo_ipanonym_sql_query_runs'],
'IP_ANONYM_ENABLED' => $config['crizzo_ipanonym_enable'],
'IP_ANONYM_MAX_AGE_VALUE' => $config['crizzo_ipanonym_max_age'],
'ACP_IP_ANONYM_QUERY_RUNS_VALUE' => $config['crizzo_ipanonym_sql_query_runs'],
'ACP_IP_ANONYM_SHOULD_RUN_TIME_VALUE' => $config['crizzo_ipanonym_should_run_time'],
));
}
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "crizzo/ipanonym",
"type": "phpbb-extension",
"description": "This phpBB extension will anonymise the user's IP in posts, topics etc.",
"homepage": "https://github.com/Crizz0/phpbb-ipanonymise",
"version": "1.0.0-dev",
"time": "2019-07-31",
"description": "This phpBB extension will anonymise the user's IP in posts, logs, sessions etc.",
"homepage": "https://github.com/Crizz0/ipanonym",
"version": "1.0.0",
"time": "2019-09-25",
"license": "GPL-2.0-only",
"authors": [{
"name": "Christian Schnegelberger",
Expand Down

0 comments on commit 661bf85

Please sign in to comment.