Skip to content
Snippets Groups Projects
Commit 993bb543 authored by tbrehm's avatar tbrehm
Browse files

Set alphabetic sorting order for dns list and sys user list.

parent abec04f6
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,7 @@ $list_def_file = "list/users.list.php";
$app->auth->check_module_permissions('admin');
$app->uses('listform_actions');
$app->listform_actions->SQLOrderBy = 'ORDER BY username';
$app->listform_actions->onLoad();
......
<?php
require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php');
/******************************************
* Begin Form configuration
******************************************/
$list_def_file = "list/dns_soa.list.php";
/******************************************
* End Form configuration
******************************************/
//* Check permissions for module
$app->auth->check_module_permissions('dns');
$app->uses('listform_actions');
// $app->listform_actions->SQLExtWhere = "access = 'REJECT'";
$app->listform_actions->onLoad();
<?php
require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php');
/******************************************
* Begin Form configuration
******************************************/
$list_def_file = "list/dns_soa.list.php";
/******************************************
* End Form configuration
******************************************/
//* Check permissions for module
$app->auth->check_module_permissions('dns');
$app->uses('listform_actions');
// $app->listform_actions->SQLExtWhere = "access = 'REJECT'";
$app->listform_actions->SQLOrderBy = 'ORDER BY origin';
$app->listform_actions->onLoad();
?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment