Skip to content

Commit 42952a8

Browse files
committed
Merge branch 'release/3.2' into fix/backup
# Conflicts: # composer.lock # lib/composer/installed.php
2 parents d92eacc + 6226ac8 commit 42952a8

File tree

654 files changed

+20630
-81356
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

654 files changed

+20630
-81356
lines changed

addons/userrights/userrightsprofile.class.inc.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ function GetGrantAsHtml($oUserRights, $sClass, $sAction)
9494
$bGrant = $oUserRights->GetProfileActionGrant($this->GetKey(), $sClass, $sAction);
9595
if (is_null($bGrant))
9696
{
97-
return '<span style="background-color: #ffdddd;">'.Dict::S('UI:UserManagement:ActionAllowed:No').'</span>';
97+
return '<span class="ibo-user-rights ibo-is-failure">'.Dict::S('UI:UserManagement:ActionAllowed:No').'</span>';
9898
}
9999
elseif ($bGrant)
100100
{
101-
return '<span style="background-color: #ddffdd;">'.Dict::S('UI:UserManagement:ActionAllowed:Yes').'</span>';
101+
return '<span class="ibo-user-rights ibo-is-success">'.Dict::S('UI:UserManagement:ActionAllowed:Yes').'</span>';
102102
}
103103
else
104104
{
105-
return '<span style="background-color: #ffdddd;">'.Dict::S('UI:UserManagement:ActionAllowed:No').'</span>';
105+
return '<span class="ibo-user-rights ibo-is-failure">'.Dict::S('UI:UserManagement:ActionAllowed:No').'</span>';
106106
}
107107
}
108108

addons/userrights/userrightsprofile.db.class.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ function GetGrantAsHtml($oUserRights, $sClass, $sAction)
250250
$iGrant = $oUserRights->GetProfileActionGrant($this->GetKey(), $sClass, $sAction);
251251
if (!is_null($iGrant))
252252
{
253-
return '<span style="background-color: #ddffdd;">'.Dict::S('UI:UserManagement:ActionAllowed:Yes').'</span>';
253+
return '<span class="ibo-user-rights ibo-is-success">'.Dict::S('UI:UserManagement:ActionAllowed:Yes').'</span>';
254254
}
255255
else
256256
{
257-
return '<span style="background-color: #ffdddd;">'.Dict::S('UI:UserManagement:ActionAllowed:No').'</span>';
257+
return '<span class="ibo-user-rights ibo-is-failure">'.Dict::S('UI:UserManagement:ActionAllowed:No').'</span>';
258258
}
259259
}
260260

addons/userrights/userrightsprojection.class.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ function GetGrantAsHtml($oUserRights, $sClass, $sAction)
8282
$oGrant = $oUserRights->GetClassActionGrant($this->GetKey(), $sClass, $sAction);
8383
if (is_object($oGrant) && ($oGrant->Get('permission') == 'yes'))
8484
{
85-
return '<span style="background-color: #ddffdd;">'.Dict::S('UI:UserManagement:ActionAllowed:Yes').'</span>';
85+
return '<span class="ibo-user-rights ibo-is-success">'.Dict::S('UI:UserManagement:ActionAllowed:Yes').'</span>';
8686
}
8787
else
8888
{
89-
return '<span style="background-color: #ffdddd;">'.Dict::S('UI:UserManagement:ActionAllowed:No').'</span>';
89+
return '<span class="ibo-user-rights ibo-is-failure">'.Dict::S('UI:UserManagement:ActionAllowed:No').'</span>';
9090
}
9191
}
9292

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
"apereo/phpcas": "~1.6.0",
1616
"firebase/php-jwt": "^6.4.0",
1717
"guzzlehttp/guzzle": "^7.5.1",
18-
"laminas/laminas-mail": "^2.11",
19-
"laminas/laminas-servicemanager": "^3.5",
2018
"league/oauth2-google": "^4.0.1",
2119
"nikic/php-parser": "^4.14.0",
2220
"pear/archive_tar": "^1.6.0",
@@ -32,6 +30,7 @@
3230
"symfony/twig-bundle": "~6.4.0",
3331
"symfony/var-dumper": "~6.4.0",
3432
"symfony/yaml": "~6.4.0",
33+
"symfony/mailer": "~6.4.0",
3534
"tecnickcom/tcpdf": "^6.6.0",
3635
"thenetworg/oauth2-azure": "^2.0",
3736
"soundasleep/html2text": "~2.1"

0 commit comments

Comments
 (0)