[Rt-commit] r14150 - in rt/branches/3.999-DANGEROUS: share/html/Elements share/html/Search/Elements
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Wed Jul 16 08:51:57 EDT 2008
Author: sunnavy
Date: Wed Jul 16 08:51:56 2008
New Revision: 14150
Modified:
rt/branches/3.999-DANGEROUS/ (props changed)
rt/branches/3.999-DANGEROUS/share/html/Elements/SelectBoolean
rt/branches/3.999-DANGEROUS/share/html/Elements/SelectMatch
rt/branches/3.999-DANGEROUS/share/html/Search/Elements/DisplayOptions
rt/branches/3.999-DANGEROUS/share/html/Search/Elements/EditSearches
Log:
r14538 at sunnavys-mb: sunnavy | 2008-07-16 17:26:24 +0800
still name fixes
Modified: rt/branches/3.999-DANGEROUS/share/html/Elements/SelectBoolean
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Elements/SelectBoolean (original)
+++ rt/branches/3.999-DANGEROUS/share/html/Elements/SelectBoolean Wed Jul 16 08:51:56 2008
@@ -61,11 +61,11 @@
<%INIT>
my $TrueDefault = '';
-my $Falsedefault = '';
+my $FalseDefault = '';
if ($default && $default !~ /true/i) {
- $Falsedefault = 'selected="selected"';
+ $FalseDefault = 'selected="selected"';
}
else {
- $Truedefault = 'selected="selected"';
+ $TrueDefault = 'selected="selected"';
}
</%INIT>
Modified: rt/branches/3.999-DANGEROUS/share/html/Elements/SelectMatch
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Elements/SelectMatch (original)
+++ rt/branches/3.999-DANGEROUS/share/html/Elements/SelectMatch Wed Jul 16 08:51:56 2008
@@ -62,21 +62,21 @@
</%ARGS>
<%INIT>
-my $Truedefault = '';
+my $TrueDefault = '';
my $FalseDefault='';
my $LikeDefault='';
-my $NotLikedefault ='';
+my $NotLikeDefault ='';
if ($default && $default =~ /false|!=/i) {
- $Falsedefault = qq[ selected="selected"];
+ $FalseDefault = qq[ selected="selected"];
}
elsif ($default && $default =~ /true|=/i) {
- $Truedefault = qq[ selected="selected"];
+ $TrueDefault = qq[ selected="selected"];
}
elsif ($default && $default =~ /notlike|NOT LIKE/i) {
- $NotLikedefault = qq[ selected="selected"];
+ $NotLikeDefault = qq[ selected="selected"];
}
else {
- $Likedefault = qq[ selected="selected"];
+ $LikeDefault = qq[ selected="selected"];
}
</%INIT>
Modified: rt/branches/3.999-DANGEROUS/share/html/Search/Elements/DisplayOptions
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Search/Elements/DisplayOptions (original)
+++ rt/branches/3.999-DANGEROUS/share/html/Search/Elements/DisplayOptions Wed Jul 16 08:51:56 2008
@@ -97,7 +97,7 @@
</table>
</&>
<&| /Widgets/TitleBox, title => _("Display Columns"), id => 'columns' &>
-<& Editformat, %ARGS &>
+<& EditFormat, %ARGS &>
</&>
<%INIT>
Modified: rt/branches/3.999-DANGEROUS/share/html/Search/Elements/EditSearches
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Search/Elements/EditSearches (original)
+++ rt/branches/3.999-DANGEROUS/share/html/Search/Elements/EditSearches Wed Jul 16 08:51:56 2008
@@ -50,7 +50,7 @@
%# Hide all the save functionality if the user shouldn't see it.
% if ( $can_modify ) {
<&|/l&>Privacy:</&>
-<& selectsearch_object, name => 'SavedSearchOwner', objects => \@objects, object => ( $object && $object->id ) ? $object->object : '' &>
+<& SelectSearchObject, name => 'SavedSearchOwner', objects => \@objects, object => ( $object && $object->id ) ? $object->object : '' &>
<br />
<&|/l&>description</&>:
<input size="25" name="saved_search_description" value="<% $description || '' %>" />
More information about the Rt-commit
mailing list