Truncate the default settings value in the list view so the page width is reasonable.
This commit is contained in:
parent
34ae95d45a
commit
e14370ca19
|
|
@ -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-2014
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
|
|
@ -160,7 +160,7 @@ require_once "resources/paging.php";
|
|||
elseif ($category == "provision" && $subcategory == "password" && $name == "var" ) {
|
||||
echo " ******** \n";
|
||||
} else {
|
||||
echo " ".$row['default_setting_value'];
|
||||
echo " ".substr($row['default_setting_value'],0,58);
|
||||
}
|
||||
echo " \n";
|
||||
echo " </td>\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue