Skip to content

Commit 970f24b

Browse files
committed
Fix if condition
1 parent 21d2231 commit 970f24b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usr/local/sbin/easyengine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ FIXMYSQLUSER16()
627627
# Fix MySQL USER ERROR 1470 (HY000)
628628
MYSQLUSER16=$(echo -n $WPDBUSER | wc -c)
629629

630-
if [[ $MYSQLUSER16 > 16 ]]
630+
if [[ $MYSQLUSER16 -gt 16 ]]
631631
then
632632
echo MySQL Database Username $WPDBUSER = $MYSQLUSER16 &>> $INSTALLLOG
633633
REPLACEDOT16=$(echo $REPLACEDOT | cut -c1-16)

0 commit comments

Comments
 (0)