summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorspiderr <spiderr@bitweaver.org>2023-05-06 18:51:13 -0400
committerspiderr <spiderr@bitweaver.org>2023-05-06 18:51:13 -0400
commitcf9b273c033be6a94e221343065dd4c02d0bec5e (patch)
tree736e2a6f9af3b56653c77544cf4b5cd25df15bd1 /admin
parentfc7779d38bc8aa5c856708b6f959569bda7a1aa3 (diff)
parent7fd34ea5a72235aac729ea43235aa45259a950c3 (diff)
downloadusers-cf9b273c033be6a94e221343065dd4c02d0bec5e.tar.gz
users-cf9b273c033be6a94e221343065dd4c02d0bec5e.tar.bz2
users-cf9b273c033be6a94e221343065dd4c02d0bec5e.zip
Merge branch 'master' of github.com:bitweaver/users
Diffstat (limited to 'admin')
-rw-r--r--admin/index.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/admin/index.php b/admin/index.php
index 10ead55..092aca4 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -165,18 +165,18 @@ if( isset( $_REQUEST["action"] ) ) {
}
break;
case 'ban':
- $gBitSystem->setBrowserTitle( tra( 'Ban user' ) );
+ $gBitSystem->setBrowserTitle( tra( 'Disable User' ) );
$msgHash = array(
- 'confirm_item' => tra( 'Are you sure you want to ban this user?' ),
- 'warning' => tra( 'This will suspend the account for user' )." <strong>$userInfo[real_name] ($userInfo[login])</strong>",
+ 'confirm_item' => tra( 'Are you sure you want to disable this user account?' ),
+ 'warning' => tra( 'This will suspend access for user' )." <strong>$userInfo[real_name] ($userInfo[login])</strong>",
);
$gBitSystem->confirmDialog( $formHash,$msgHash );
break;
case 'unban':
- $gBitSystem->setBrowserTitle( tra( 'Unban user' ) );
+ $gBitSystem->setBrowserTitle( tra( 'Re-enable user' ) );
$msgHash = array(
- 'confirm_item' => tra( 'Are you sure you want to unban this user?' ),
- 'warning' => tra( 'This will restore the account for user' )." <strong>$userInfo[real_name] ($userInfo[login])</strong>",
+ 'confirm_item' => tra( 'Are you sure you want to re-enable this user?' ),
+ 'warning' => tra( 'This will restore access for user' )." <strong>$userInfo[real_name] ($userInfo[login])</strong>",
);
$gBitSystem->confirmDialog( $formHash,$msgHash );
break;