Revision f6aebbcc
Added by NewEraCracker over 9 years ago
src/usr/local/www/system_usermanager.php | ||
---|---|---|
553 | 553 |
</form> |
554 | 554 |
|
555 | 555 |
<div class="infoblock"> |
556 |
<?=print_info_box(gettext("Additional users can be added here. User permissions for accessing " .
|
|
556 |
<?php print_info_box(gettext("Additional users can be added here. User permissions for accessing " .
|
|
557 | 557 |
"the webConfigurator can be assigned directly or inherited from group memberships. " . |
558 | 558 |
"An icon that appears grey indicates that it is a system defined object. " . |
559 | 559 |
"Some system object properties can be modified but they cannot be deleted.") . |
560 | 560 |
'<br /><br />' . |
561 | 561 |
gettext("Accounts added here are also used for other parts of the system " . |
562 |
"such as OpenVPN, IPsec, and Captive Portal."), 'info', false)?> |
|
562 |
"such as OpenVPN, IPsec, and Captive Portal."), 'info', false); ?>
|
|
563 | 563 |
</div> |
564 | 564 |
|
565 | 565 |
<?php |
Also available in: Unified diff
Bring all calls of print_info_box to same standard
The call itself to print_info_box already echoes the content. There is no need of additionally using the short-open-echo tag on those calls to echo return value. The previous implementation shouldn't yell any visible issues as return is 'NULL' (undefined) which casts to an empty string when printing. But, just for the sake of conformity, this changes are advisable in my opinion.