Some 140 fixes

I would like to share with you some fixes that Angelus and friend made in 140. I have not tested them but I would like to pass them on. If they are helpful or not, please report back to me here. Unfortunately I cannot amend the 140 full download so easily otherwise I would have done so. If required, these fixes will be applied in the 141 versions.
First bug:
Description
Sorting in ACP->User Admin->User List Ascending/descending does not work:
Bugfix:
Second bug]
Description:
Missing error message when adding a link in link management with missing informations (link, category etc.)
Bugfix (for German/Englisch lang):
[b]Third Bug when using Full Album Package 1.2.1 posted on old integramod site]Description:[/u]
In the news management the category link has description "Album Category". I posted that on old integramod but nobody ever corrected that although others had problem too
Bugfix:
A
First bug:
Description
Sorting in ACP->User Admin->User List Ascending/descending does not work:
Bugfix:
- Code: Select all
##-----[ OPEN ]------------------------------------------# admin/admin_userlist.php ##-----[ FIND ]------------------------------------------# $order_by = "ORDER BY $sort $order "; ##-----[ IN LINE, FIND ]------------------------------------------# $order ##-----[ IN LINE, REPLACE WITH ]------------------------------------------# $sort_order ##-----[ SAVE/CLOSE ALL FILES ]------------------------------------------## EoM
Second bug]
Description:
Missing error message when adding a link in link management with missing informations (link, category etc.)
Bugfix (for German/Englisch lang):
- Code: Select all
##-----[ OPEN ]------------------------------------------# language/german/lang_admin_link.php ##-----[ FIND ]------------------------------------------# $lang['Link_admin_delete_fail'] = "Der Link konnte nicht gelÃÂÂ ¶scht werden, bitte versuche es nochmals."; ##-----[ AFTER, ADD ]------------------------------------------# $lang['Link_incomplete'] = "Der Link ist nicht komplett"; ##-----[ OPEN ]------------------------------------------# language/lang_english/lang_admin_link.php ##-----[ FIND ]------------------------------------------# $lang['Link_admin_delete_fail'] = "Unable to remove the link, please try again later"; ##-----[ AFTER, ADD ]------------------------------------------# $lang['Link_incomplete'] = "Link incomplete"; ##-----[ SAVE/CLOSE ALL FILES ]------------------------------------------## EoM
[b]Third Bug when using Full Album Package 1.2.1 posted on old integramod site]Description:[/u]
In the news management the category link has description "Album Category". I posted that on old integramod but nobody ever corrected that although others had problem too
Bugfix:
- Code: Select all
##-----[ OPEN ]------------------------------------------# admin/modules/admin_news_cats.php ##-----[ FIND ]------------------------------------------# $module['News Admin']['Categories'] = $filename; ##-----[ REPLACE WITH ]------------------------------------------# $module['News Admin']['News_Categories'] = $filename; ##-----[ SAVE/CLOSE ALL FILES ]------------------------------------------#
A