Update apps.php (#4650)
remove displaying " " from null descriptions
This commit is contained in:
parent
08dee8d843
commit
a9e37f2268
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
The Initial Developer of the Original Code is
|
||||
Mark J Crane <markjcrane@fusionpbx.com>
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2019
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
|
||||
$description = $row['description'][$_SESSION['domain']['language']['code']];
|
||||
if (strlen($description) == 0) { $description = $row['description']['en-us']; }
|
||||
if (strlen($description) == 0) { $description = ' '; }
|
||||
if (strlen($description) == 0) { $description = ''; }
|
||||
$row['$description'] = $description;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue