mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 10:37:42 -07:00
Adding note about max length of mysql username
This commit is contained in:
parent
ba91d1fd78
commit
8cabb5414a
31 changed files with 49 additions and 2 deletions
|
@ -42,7 +42,7 @@
|
|||
<table class="data-col2" width="600px">
|
||||
<tr>
|
||||
<td class="step-top hint" style="color:#777;" >
|
||||
<?php print __('Prefix will be automaticaly added to database name and database user',$user."_");?>
|
||||
<?php print __('Prefix will be automaticaly added to database name and database user',"<b>".$user."_</b>");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -58,7 +58,10 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text input-label">
|
||||
<?php print __('User');?>
|
||||
<?php
|
||||
print __('User');
|
||||
if (is_it_mysql_or_mariadb()=='mysql') echo " <em><small>(".__('maximum 16 characters length, including prefix').")</small></em>";
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue