Skip to content

Commit

Permalink
Merge branch 'SLE-12-SP1' into 'SLE-12-SP2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilson Souza committed Jul 18, 2017
2 parents 2f3a285 + e0d6ab0 commit 9a07cf1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions package/yast2-support.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Jun 16 08:08:10 UTC 2017 - jreidinger@suse.com

- Allow service request number longer then 11 digits (bsc#1040706)
- 3.1.7

-------------------------------------------------------------------
Thu Mar 19 11:14:48 UTC 2015 - ancor@suse.com

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-support.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-support
Version: 3.1.6
Version: 3.1.7
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
6 changes: 3 additions & 3 deletions src/include/support/dialogs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ def ContactDialog
Left(
InputField(
Id(:novell_number),
_("11-digit service request number"),
_("Service request number"),
Support.novell_number
)
)
Expand Down Expand Up @@ -847,8 +847,8 @@ def ContactDialog
UI.QueryWidget(:novell_number, :Value)
)
if Ops.greater_than(Builtins.size(Support.novell_number), 0)
if Builtins.size(Support.novell_number) != 11
Popup.Error(_("The SR number must be 11 digits"))
if Builtins.size(Support.novell_number) < 11
Popup.Error(_("The service request number must be at least 11 digits"))
ret = nil
next
end
Expand Down
2 changes: 1 addition & 1 deletion src/include/support/helps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def initialize_support_helps(include_target)
) +
# Contact dialog help 4/4
_(
"<p><b>Note:</b> If you are uploading a supportconfig tarball to Global Technical Support,\nmake sure you include the 11-digit service request number from your open service request.\n"
"<p><b>Note:</b> If you are uploading a supportconfig tarball to Global Technical Support,\nmake sure you include the service request number from your open service request.\n"
),
# Collecting data dialkog help 1/1
"collecting" => _(
Expand Down

0 comments on commit 9a07cf1

Please sign in to comment.