From 3501f913b6d56e38e1b39ca92a4cb2ef0b3cfb64 Mon Sep 17 00:00:00 2001 From: mcramer <m.cramer@pixcept.de> Date: Sun, 19 Aug 2012 04:02:55 -0400 Subject: [PATCH] Implemented FS#2382 - automatically add alias domain when creating a domain --- interface/web/client/client_edit.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/web/client/client_edit.php b/interface/web/client/client_edit.php index c5d7ba4..fd760af 100644 --- a/interface/web/client/client_edit.php +++ b/interface/web/client/client_edit.php @@ -1,6 +1,6 @@ <?php /* -Copyright (c) 2005 - 2008, Till Brehm, projektfarm Gmbh +Copyright (c) 2005 - 2012, Till Brehm, projektfarm Gmbh, ISPConfig UG All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -101,7 +101,7 @@ global $app; - $sql = "SELECT template_id,template_name FROM client_template WHERE template_type = 'a'"; + $sql = "SELECT template_id,template_name FROM client_template WHERE template_type = 'a' ORDER BY template_name ASC"; $tpls = $app->db->queryAllRecords($sql); $option = ''; $tpl = array(); -- Gitblit v1.9.1