Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CentralNic
php-epp
Commits
bdb095e5
Commit
bdb095e5
authored
Jun 14, 2013
by
maryoflaherty
Browse files
Check if variable is set
parent
1007c3c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Net/EPP/Frame/Command.php
View file @
bdb095e5
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
$this
->
command
=
$this
->
createElement
(
$command
);
$this
->
command
=
$this
->
createElement
(
$command
);
$this
->
body
->
appendChild
(
$this
->
command
);
$this
->
body
->
appendChild
(
$this
->
command
);
if
(
$this
->
type
!==
""
)
{
if
(
isset
(
$this
->
type
)
)
{
$this
->
payload
=
$this
->
createElementNS
(
$this
->
payload
=
$this
->
createElementNS
(
Net_EPP_ObjectSpec
::
xmlns
(
$this
->
type
),
Net_EPP_ObjectSpec
::
xmlns
(
$this
->
type
),
$this
->
type
.
':'
.
$command
$this
->
type
.
':'
.
$command
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
}
}
$this
->
clTRID
=
$this
->
createElement
(
'clTRID'
);
$this
->
clTRID
=
$this
->
createElement
(
'clTRID'
);
$this
->
clTRID
->
appendChild
(
$this
->
createTextNode
(
'
a
'
));
$this
->
clTRID
->
appendChild
(
$this
->
createTextNode
(
''
));
$this
->
body
->
appendChild
(
$this
->
clTRID
);
$this
->
body
->
appendChild
(
$this
->
clTRID
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment