[ticket/10614] Change not installed heading to available.

"Not installed" implies that extensions listed there can be
installed, but the operation is called enable.

Reduce the confusion by using "available" for the heading,
this matches extension manager code.

PHPBB3-10614
This commit is contained in:
Oleg Pudeyev 2012-02-11 17:31:22 -05:00
parent 2814021d3f
commit 87914d2788

View file

@ -48,7 +48,7 @@ function list_extensions()
print_extensions($disabled);
echo "\n";
echo "Not installed:\n";
echo "Available:\n";
$all = array_keys($phpbb_extension_manager->all_available());
$purged = array_diff($all, $enabled, $disabled);
print_extensions($purged);