-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
now SR number can be longer then 11 as we already eat that numbers, s… #12
Conversation
…nce branch SLE-12-SP2
…o relax condition
src/include/support/dialogs.rb
Outdated
@@ -771,7 +771,7 @@ def ContactDialog | |||
Left( | |||
InputField( | |||
Id(:novell_number), | |||
_("11-digit service request number"), | |||
_("service request number"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, I guess capital "S" needed here
src/include/support/dialogs.rb
Outdated
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 SR number must be at least 11 digits")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd myself use "service request" instead of SR
(unified with other places)
Rakefile
Outdated
@@ -1,5 +1,7 @@ | |||
require "yast/rake" | |||
|
|||
Yast::Tasks.submit_to :sle12sp2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks weird, master is ... SLE 12 SP3 or SLE 15 now, not SLE 12 SP2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, this is wrong
…maintenance branch SLE-12-SP2" This reverts commit 2f3a285.
LGTM, thanks :) |
fix confirmed