Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
whmcs-coza-epp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Craig Cawood
whmcs-coza-epp
Commits
f98183ce
Commit
f98183ce
authored
11 years ago
by
Nigel Kukard
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed phone number format to use full intl version
Change-Id: I484063e66644d549fdd2659140c075cdeb30b141
parent
1d0a0d3c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/registrars/cozaepp/cozaepp.php
+4
-4
4 additions, 4 deletions
modules/registrars/cozaepp/cozaepp.php
with
4 additions
and
4 deletions
modules/registrars/cozaepp/cozaepp.php
+
4
−
4
View file @
f98183ce
...
...
@@ -296,7 +296,7 @@ function cozaepp_RegisterDomain($params) {
$RegistrantPostalCode
=
$params
[
"postcode"
];
$RegistrantCountry
=
$params
[
"country"
];
$RegistrantEmailAddress
=
$params
[
"email"
];
$RegistrantPhone
=
$params
[
"phonenumber"
];
$RegistrantPhone
=
$params
[
"
full
phonenumber"
];
# Get admin details
$AdminFirstName
=
$params
[
"adminfirstname"
];
$AdminLastName
=
$params
[
"adminlastname"
];
...
...
@@ -371,7 +371,7 @@ function cozaepp_RegisterDomain($params) {
<contact:cc>'
.
$RegistrantCountry
.
'</contact:cc>
</contact:addr>
</contact:postalInfo>
<contact:voice>'
.
$
params
[
"phonenumber"
]
.
'</contact:voice>
<contact:voice>'
.
$
RegistrantPhone
.
'</contact:voice>
<contact:fax></contact:fax>
<contact:email>'
.
$RegistrantEmailAddress
.
'</contact:email>
<contact:authInfo>
...
...
@@ -469,7 +469,7 @@ function cozaepp_TransferDomain($params) {
$RegistrantPostalCode
=
$params
[
"postcode"
];
$RegistrantCountry
=
$params
[
"country"
];
$RegistrantEmailAddress
=
$params
[
"email"
];
$RegistrantPhone
=
$params
[
"phonenumber"
];
$RegistrantPhone
=
$params
[
"
full
phonenumber"
];
# Admin details
$AdminFirstName
=
$params
[
"adminfirstname"
];
$AdminLastName
=
$params
[
"adminlastname"
];
...
...
@@ -535,7 +535,7 @@ function cozaepp_TransferDomain($params) {
<contact:cc>'
.
$RegistrantCountry
.
'</contact:cc>
</contact:addr>
</contact:postalInfo>
<contact:voice>'
.
$
params
[
"phonenumber"
]
.
'</contact:voice>
<contact:voice>'
.
$
RegistrantPhone
.
'</contact:voice>
<contact:fax></contact:fax>
<contact:email>'
.
$RegistrantEmailAddress
.
'</contact:email>
<contact:authInfo>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment