[otrs-cvs] otrs/Kernel/Output/HTML/Standard AdminUser.dtl, 1.45, 1.46 AgentTicketEmail.dtl, 1.164, 1.165 AgentTicketOverviewPreview.dtl, 1.81, 1.82 AdminCustomerUser.dtl, 1.40, 1.41 AgentTicketPhone.dtl, 1.150, 1.151 AgentTicketCompose.dtl, 1.111, 1.112 LinkObject.dtl, 1.35, 1.36 AgentTicketOverviewSmall.dtl, 1.90, 1.91 AgentTicketForward.dtl, 1.102, 1.103 AdminMailAccount.dtl, 1.40, 1.41 AgentTicketCustomer.dtl, 1.40, 1.41 AgentTicketOverviewMedium.dtl, 1.73, 1.74

"CVS commits notifications of OTRS.org" <[email protected]>
Newsgroups gmane.comp.otrs.cvs
Message-ID <[email protected]>
Comments:
Update of /home/cvs/otrs/Kernel/Output/HTML/Standard
In directory lancelot:/tmp/cvs-serv9997/Kernel/Output/HTML/Standard

Modified Files:
	AdminUser.dtl AgentTicketEmail.dtl 
	AgentTicketOverviewPreview.dtl AdminCustomerUser.dtl 
	AgentTicketPhone.dtl AgentTicketCompose.dtl LinkObject.dtl 
	AgentTicketOverviewSmall.dtl AgentTicketForward.dtl 
	AdminMailAccount.dtl AgentTicketCustomer.dtl 
	AgentTicketOverviewMedium.dtl 
Log Message:
Fixed bug#4513 - Password and Username are added automatically by the browser in AdminUser dialog.

Author: mn

Index: AdminUser.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AdminUser.dtl,v
retrieving revision 1.45
retrieving revision 1.46
diff -2 -u -d -r1.45 -r1.46
--- AdminUser.dtl	20 Nov 2012 15:15:11 -0000	1.45
+++ AdminUser.dtl	11 Jan 2013 12:35:18 -0000	1.46
@@ -1,5 +1,5 @@
 # --
 # AdminUser.dtl - provides HTML form for AdminUser
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -173,5 +173,5 @@
                         <label class="Mandatory" for="UserLogin"><span class="Marker">*</span> $Text{"Username"}:</label>
                         <div class="Field">
-                            <input type="text" name="UserLogin" id="UserLogin" value="$QData{"UserLogin"}" class="W50pc Validate_Required $QData{"UserLoginInvalid"}" maxlength="200"/>
+                            <input type="text" name="UserLogin" id="UserLogin" value="$QData{"UserLogin"}" class="W50pc Validate_Required $QData{"UserLoginInvalid"}" maxlength="200" autocomplete="off" />
                             <div id="UserLoginError" class="TooltipErrorMessage"><p>$Text{"This field is required."}</p></div>
                             <div id="UserLoginServerError" class="TooltipErrorMessage"><p>$Text{"This field is required."}</p></div>
@@ -186,5 +186,5 @@
                         </label>
                         <div class="Field">
-                            <input type="password" name="UserPw" id="UserPw" value="" class="W50pc $QData{"UserPwRequired"} $QData{"UserPwInvalid"} " maxlength="100"/>
+                            <input type="password" name="UserPw" id="UserPw" value="" class="W50pc $QData{"UserPwRequired"} $QData{"UserPwInvalid"} " maxlength="100" autocomplete="off" />
                             <div id="UserPwError" class="TooltipErrorMessage"><p>$Text{"Password is required."}</p></div>
                             <div id="UserPwServerError" class="TooltipErrorMessage"><p>$Text{"Password is required."}</p></div>
@@ -259,5 +259,5 @@
                         <label for="$QData{"Name"}">$Text{"$Data{"Label"}"} $Text{"$Data{"Key"}"}:</label>
                         <div class="Field">
-                            <input type="password" name="$QData{"Name"}" value="" class="W50pc"/>
+                            <input type="password" name="$QData{"Name"}" value="" class="W50pc" autocomplete="off" />
                         </div>
                         <div class="Clear"></div>

Author: mn

Index: AgentTicketEmail.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketEmail.dtl,v
retrieving revision 1.164
retrieving revision 1.165
diff -2 -u -d -r1.164 -r1.165
--- AgentTicketEmail.dtl	7 Jan 2013 12:24:28 -0000	1.164
+++ AgentTicketEmail.dtl	11 Jan 2013 12:35:18 -0000	1.165
@@ -166,5 +166,5 @@
                     <label for="ToCustomer" class="Mandatory"><span class="Marker">*</span>$Text{"To customer"}:</label>
                     <div class="Field">
-                        <input id="ToCustomer" type="text" name="ToCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"ToInvalid"}"/>
+                        <input id="ToCustomer" type="text" name="ToCustomer" value="" class="CustomerAutoComplete W75pc $QData{"ToInvalid"}" autocomplete="off" />
                         <div id="ToCustomerServerError" class="TooltipErrorMessage">
 <!-- dtl:block:ToServerErrorMsg -->
@@ -225,5 +225,5 @@
                     <label for="CcCustomer">$Text{"Cc"}:</label>
                     <div class="Field">
-                        <input id="CcCustomer" type="text" name="CcCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"CcInvalid"}"/>
+                        <input id="CcCustomer" type="text" name="CcCustomer" value="" class="CustomerAutoComplete W75pc $QData{"CcInvalid"}" autocomplete="off" />
                     </div>
                     <div class="Clear"></div>
@@ -279,5 +279,5 @@
                     <label for="BccCustomer">$Text{"Bcc"}:</label>
                     <div class="Field">
-                        <input id="BccCustomer" type="text" name="BccCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"BccInvalid"}"/>
+                        <input id="BccCustomer" type="text" name="BccCustomer" value="" class="CustomerAutoComplete W75pc $QData{"BccInvalid"}" autocomplete="off" />
                     </div>
                     <div class="Clear"></div>

Author: mn

Index: AgentTicketOverviewPreview.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketOverviewPreview.dtl,v
retrieving revision 1.81
retrieving revision 1.82
diff -2 -u -d -r1.81 -r1.82
--- AgentTicketOverviewPreview.dtl	20 Nov 2012 15:21:58 -0000	1.81
+++ AgentTicketOverviewPreview.dtl	11 Jan 2013 12:35:18 -0000	1.82
@@ -1,5 +1,5 @@
 # --
 # AgentTicketOverviewPreview.dtl - provides HTML Ticket Overview
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -14,5 +14,5 @@
     <li class="Bulk">
         <span>
-            <input type="checkbox" class="AutocompleteOff" title="$Text{"Select all"}" id="SelectAllTickets" />
+            <input type="checkbox" title="$Text{"Select all"}" id="SelectAllTickets" autocomplete="off" />
             <label class="InvisibleText" for="SelectAllTickets">$Text{"Select all"}</label>
         </span>
@@ -82,5 +82,5 @@
 <!-- dtl:block:Bulk -->
             <div class="Checkbox">
-                <input class="Checkbox AutocompleteOff" type="checkbox" name="TicketID" value="$QData{"TicketID"}" />
+                <input class="Checkbox" type="checkbox" name="TicketID" value="$QData{"TicketID"}" autocomplete="off" />
             </div>
 <!-- dtl:block:Bulk -->

Author: mn

Index: AdminCustomerUser.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AdminCustomerUser.dtl,v
retrieving revision 1.40
retrieving revision 1.41
diff -2 -u -d -r1.40 -r1.41
--- AdminCustomerUser.dtl	20 Nov 2012 15:07:27 -0000	1.40
+++ AdminCustomerUser.dtl	11 Jan 2013 12:35:18 -0000	1.41
@@ -1,5 +1,5 @@
 # --
 # AdminCustomerUser.dtl - provides HTML form for AdminCustomerUser
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -242,5 +242,5 @@
                         <label for="$QData{"Name"}">$Text{"$Data{"Label"}"}:</label>
                         <div class="Field">
-                            <input id="$QData{"Name"}" type="password" name="$QData{"Name"}" class="W50pc" value="$QData{"SelectedID"}"/>
+                            <input id="$QData{"Name"}" type="password" name="$QData{"Name"}" class="W50pc" value="$QData{"SelectedID"}" autocomplete="off" />
                             <div>$Text{"$Data{"Key"}"}</div>
                         </div>

Author: mn

Index: AgentTicketPhone.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketPhone.dtl,v
retrieving revision 1.150
retrieving revision 1.151
diff -2 -u -d -r1.150 -r1.151
--- AgentTicketPhone.dtl	20 Nov 2012 15:22:40 -0000	1.150
+++ AgentTicketPhone.dtl	11 Jan 2013 12:35:18 -0000	1.151
@@ -1,5 +1,5 @@
 # --
 # AgentTicketPhone.dtl - provides HTML form for phone
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -137,5 +137,5 @@
                     <label for="FromCustomer" class="Mandatory"><span class="Marker">*</span>$Text{"From customer"}:</label>
                     <div class="Field">
-                        <input id="FromCustomer" type="text" name="FromCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"FromInvalid"}"/>
+                        <input id="FromCustomer" type="text" name="FromCustomer" value="" class="CustomerAutoComplete W75pc $QData{"FromInvalid"}" autocomplete="off" />
                         <div id="FromCustomerServerError" class="TooltipErrorMessage">
 <!-- dtl:block:FromServerErrorMsg -->

Author: mn

Index: AgentTicketCompose.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketCompose.dtl,v
retrieving revision 1.111
retrieving revision 1.112
diff -2 -u -d -r1.111 -r1.112
--- AgentTicketCompose.dtl	7 Jan 2013 12:24:28 -0000	1.111
+++ AgentTicketCompose.dtl	11 Jan 2013 12:35:18 -0000	1.112
@@ -110,5 +110,5 @@
                     <label for="ToCustomer" class="Mandatory"><span class="Marker">*</span>$Text{"To"}:</label>
                     <div class="Field">
-                        <input id="ToCustomer" type="text" name="ToCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"ToInvalid"}"/>
+                        <input id="ToCustomer" type="text" name="ToCustomer" value="" class="CustomerAutoComplete W75pc $QData{"ToInvalid"}" autocomplete="off" />
 
                         <div id="ToCustomerServerError" class="TooltipErrorMessage">
@@ -183,5 +183,5 @@
                     <label for="CcCustomer">$Text{"Cc"}:</label>
                     <div class="Field">
-                        <input id="CcCustomer" type="text" name="CcCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"CcInvalid"}"/>
+                        <input id="CcCustomer" type="text" name="CcCustomer" value="" class="CustomerAutoComplete W75pc $QData{"CcInvalid"}" autocomplete="off" />
                     </div>
                     <div class="Clear"></div>
@@ -250,5 +250,5 @@
                     <label for="BccCustomer">$Text{"Bcc"}:</label>
                     <div class="Field">
-                        <input id="BccCustomer" type="text" name="BccCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"BccInvalid"}"/>
+                        <input id="BccCustomer" type="text" name="BccCustomer" value="" class="CustomerAutoComplete W75pc $QData{"BccInvalid"}" autocomplete="off" />
                     </div>
                     <div class="Clear"></div>

Author: mn

Index: LinkObject.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/LinkObject.dtl,v
retrieving revision 1.35
retrieving revision 1.36
diff -2 -u -d -r1.35 -r1.36
--- LinkObject.dtl	20 Nov 2012 15:27:48 -0000	1.35
+++ LinkObject.dtl	11 Jan 2013 12:35:19 -0000	1.36
@@ -1,5 +1,5 @@
 # --
 # LinkObject.dtl - provides HTML elements for link object lists
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -80,5 +80,5 @@
             <li class="Bulk">
                 <span>
-                    <input type="checkbox" class="AutocompleteOff SelectAll" title="$Text{"Select all"}" id="SelectAllLinks$Text{"$Data{"TableNumber"}"}" />
+                    <input type="checkbox" class="SelectAll" title="$Text{"Select all"}" id="SelectAllLinks$Text{"$Data{"TableNumber"}"}" autocomplete="off" />
                     <label class="InvisibleText" for="SelectAllLinks$Text{"$Data{"TableNumber"}"}">$Text{"Select all"}</label>
                 </span>

Author: mn

Index: AgentTicketOverviewSmall.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketOverviewSmall.dtl,v
retrieving revision 1.90
retrieving revision 1.91
diff -2 -u -d -r1.90 -r1.91
--- AgentTicketOverviewSmall.dtl	20 Nov 2012 15:22:09 -0000	1.90
+++ AgentTicketOverviewSmall.dtl	11 Jan 2013 12:35:19 -0000	1.91
@@ -1,5 +1,5 @@
 # --
 # AgentTicketOverviewSmall.dtl - html for ticket overview table
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -44,5 +44,5 @@
 <!-- dtl:block:BulkNavBar -->
                     <th class="Checkbox Fixed">
-                        <input type="checkbox" class="Checkbox AutocompleteOff" title="$Text{"Select all"}" id="SelectAllTickets" />
+                        <input type="checkbox" class="Checkbox" title="$Text{"Select all"}" id="SelectAllTickets" autocomplete="off" />
                     </th>
 <!-- dtl:block:BulkNavBar -->
@@ -147,5 +147,5 @@
 <!-- dtl:block:Bulk -->
                     <td class="Checkbox Fixed NonTextContent">
-                        <input class="Checkbox AutocompleteOff" type="checkbox" name="TicketID" value="$QData{"TicketID"}" />
+                        <input class="Checkbox" type="checkbox" name="TicketID" value="$QData{"TicketID"}"  autocomplete="off" />
                     </td>
 <!-- dtl:block:Bulk -->

Author: mn

Index: AgentTicketForward.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketForward.dtl,v
retrieving revision 1.102
retrieving revision 1.103
diff -2 -u -d -r1.102 -r1.103
--- AgentTicketForward.dtl	7 Jan 2013 12:24:28 -0000	1.102
+++ AgentTicketForward.dtl	11 Jan 2013 12:35:19 -0000	1.103
@@ -110,5 +110,5 @@
                 <label for="ToCustomer" class="Mandatory"><span class="Marker">*</span>$Text{"To"}:</label>
                 <div class="Field">
-                    <input id="ToCustomer" type="text" name="ToCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"ToInvalid"}"/>
+                    <input id="ToCustomer" type="text" name="ToCustomer" value="" class="CustomerAutoComplete W75pc $QData{"ToInvalid"}" autocomplete="off" />
 
                     <div id="ToCustomerServerError" class="TooltipErrorMessage">
@@ -173,5 +173,5 @@
                 <label for="CcCustomer">$Text{"Cc"}:</label>
                 <div class="Field">
-                    <input id="CcCustomer" type="text" name="CcCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"CcInvalid"}"/>
+                    <input id="CcCustomer" type="text" name="CcCustomer" value="" class="CustomerAutoComplete W75pc $QData{"CcInvalid"}" autocomplete="off" />
                 </div>
                 <div class="Clear"></div>
@@ -230,5 +230,5 @@
                 <label for="BccCustomer">$Text{"Bcc"}:</label>
                 <div class="Field">
-                    <input id="BccCustomer" type="text" name="BccCustomer" value="" class="CustomerAutoComplete W75pc AutocompleteOff $QData{"BccInvalid"}"/>
+                    <input id="BccCustomer" type="text" name="BccCustomer" value="" class="CustomerAutoComplete W75pc $QData{"BccInvalid"}" autocomplete="off" />
                 </div>
                 <div class="Clear"></div>

Author: mn

Index: AdminMailAccount.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AdminMailAccount.dtl,v
retrieving revision 1.40
retrieving revision 1.41
diff -2 -u -d -r1.40 -r1.41
--- AdminMailAccount.dtl	20 Nov 2012 15:10:05 -0000	1.40
+++ AdminMailAccount.dtl	11 Jan 2013 12:35:19 -0000	1.41
@@ -1,5 +1,5 @@
 # --
 # AdminMailAccount.dtl - provides HTML form for AdminMailAccount
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -125,5 +125,5 @@
                         <label class="Mandatory" for="LoginAdd"><span class="Marker">*</span> $Text{"Username"}:</label>
                         <div class="Field">
-                            <input type="text" class="W50pc Validate_Required $QData{"LoginAddInvalid"}" name="Login" id="LoginAdd" value="" maxlength="200"/>
+                            <input type="text" class="W50pc Validate_Required $QData{"LoginAddInvalid"}" name="Login" id="LoginAdd" value="" maxlength="200" autocomplete="off" />
                             <div id="LoginAddError" class="TooltipErrorMessage">
                                 <p>$Text{"This field is required."}</p>
@@ -137,5 +137,5 @@
                         <label class="Mandatory" for="PasswordAdd"><span class="Marker">*</span> $Text{"Password"}:</label>
                         <div class="Field">
-                            <input type="password" class="W50pc Validate_Required $QData{"PasswordAddInvalid"}" name="Password" id="PasswordAdd" value="" maxlength="200"/>
+                            <input type="password" class="W50pc Validate_Required $QData{"PasswordAddInvalid"}" name="Password" id="PasswordAdd" value="" maxlength="200" autocomplete="off" />
                             <div id="PasswordAddError" class="TooltipErrorMessage">
                                 <p>$Text{"This field is required."}</p>
@@ -242,5 +242,5 @@
                         <label class="Mandatory" for="LoginEdit"><span class="Marker">*</span> $Text{"Username"}:</label>
                         <div class="Field">
-                            <input type="text" class="W50pc Validate_Required $QData{"LoginEditInvalid"}" name="Login" id="LoginEdit" value="$QData{"Login"}" maxlength="200"/>
+                            <input type="text" class="W50pc Validate_Required $QData{"LoginEditInvalid"}" name="Login" id="LoginEdit" value="$QData{"Login"}" maxlength="200" autocomplete="off" />
                             <div id="LoginEditError" class="TooltipErrorMessage">
                                 <p>$Text{"This field is required."}</p>
@@ -254,5 +254,5 @@
                         <label class="Mandatory" for="PasswordEdit"><span class="Marker">*</span> $Text{"Password"}:</label>
                         <div class="Field">
-                            <input type="password" class="W50pc Validate_Required $QData{"PasswordEditInvalid"}" name="Password" id="PasswordEdit" value="$QData{"Password"}" maxlength="200"/>
+                            <input type="password" class="W50pc Validate_Required $QData{"PasswordEditInvalid"}" name="Password" id="PasswordEdit" value="$QData{"Password"}" maxlength="200" autocomplete="off" />
                             <div id="PasswordEditError" class="TooltipErrorMessage">
                                 <p>$Text{"This field is required."}</p>

Author: mn

Index: AgentTicketCustomer.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketCustomer.dtl,v
retrieving revision 1.40
retrieving revision 1.41
diff -2 -u -d -r1.40 -r1.41
--- AgentTicketCustomer.dtl	20 Nov 2012 15:20:43 -0000	1.40
+++ AgentTicketCustomer.dtl	11 Jan 2013 12:35:19 -0000	1.41
@@ -1,5 +1,5 @@
 # --
 # AgentTicketCustomer.dtl - provides HTML for AgentTicketCustomer.pm
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -43,5 +43,5 @@
                             <label for="CustomerAutoComplete">$Text{"Customer user"}:</label>
                             <div class="Field">
-                                <input id="CustomerAutoComplete" type="text" name="CustomerUserID" value="$QData{"CustomerUserID"}" class="W75pc AutocompleteOff Validate_Required $QData{"CustomerUserIDInvalid"}"/>
+                                <input id="CustomerAutoComplete" type="text" name="CustomerUserID" value="$QData{"CustomerUserID"}" class="W75pc Validate_Required $QData{"CustomerUserIDInvalid"}" autocomplete="off" />
                                 <div id="CustomerAutoCompleteError" class="TooltipErrorMessage"><p>$Text{"This field is required."}</p></div>
                                 <div id="CustomerAutoCompleteServerError" class="TooltipErrorMessage"><p>$Text{"This field is required."}</p></div>

Author: mn

Index: AgentTicketOverviewMedium.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketOverviewMedium.dtl,v
retrieving revision 1.73
retrieving revision 1.74
diff -2 -u -d -r1.73 -r1.74
--- AgentTicketOverviewMedium.dtl	20 Nov 2012 15:21:44 -0000	1.73
+++ AgentTicketOverviewMedium.dtl	11 Jan 2013 12:35:19 -0000	1.74
@@ -1,5 +1,5 @@
 # --
 # AgentTicketOverviewMedium.dtl - provides HTML Ticket Overview
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
 # --
 # $Id$
@@ -14,5 +14,5 @@
     <li class="Bulk">
         <span>
-            <input type="checkbox" class="AutocompleteOff" title="$Text{"Select all"}" id="SelectAllTickets" />
+            <input type="checkbox" title="$Text{"Select all"}" id="SelectAllTickets" autocomplete="off" />
             <label class="InvisibleText" for="SelectAllTickets">$Text{"Select all"}</label>
         </span>
@@ -82,5 +82,5 @@
 <!-- dtl:block:Bulk -->
             <div class="Checkbox">
-                <input class="Checkbox AutocompleteOff" type="checkbox" name="TicketID" value="$QData{"TicketID"}" />
+                <input class="Checkbox" type="checkbox" name="TicketID" value="$QData{"TicketID"}" autocomplete="off" />
             </div>
 <!-- dtl:block:Bulk -->
---------------------------------------------------------------------
OTRS mailing list: cvs-log - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/cvs-log
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/cvs-log
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.