fixed en to en-us
This commit is contained in:
parent
e1d5d72d28
commit
98a4e42dae
|
|
@ -91,7 +91,7 @@ require_once "includes/paging.php";
|
|||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['category']." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['subcategory']." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['version']." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."' width='35%'>".$row['description']['en']." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."' width='35%'>".$row['description']['en-us']." </td>\n";
|
||||
echo " <td valign='top' align='left' nowrap='nowrap' width='42'>\n";
|
||||
echo " <a href='apps_edit.php?id=".$row['uuid']."' alt='edit'>$v_link_label_edit</a>\n";
|
||||
echo " <a href='apps_delete.php?id=".$row['uuid']."' alt='delete' onclick=\"return confirm('Do you really want to delete this?')\">$v_link_label_delete</a>\n";
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
|||
$category = $row['category'];
|
||||
$subcategory = $row['subcategory'];
|
||||
$version = $row['version'];
|
||||
$description = $row['description']['en'];
|
||||
$description = $row['description']['en-us'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@ require_once "includes/paging.php";
|
|||
//list all the permissions
|
||||
foreach($apps as $app) {
|
||||
$app_name = $app['name'];
|
||||
$description = $app['description']['en'];
|
||||
$description = $app['description']['en-us'];
|
||||
|
||||
echo "<strong>".$app_name."</strong><br />\n";
|
||||
echo "".$description."<br /><br />";
|
||||
|
|
|
|||
Loading…
Reference in New Issue