This is an automated email from the ASF dual-hosted git repository.
junichi11 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/master by this push:
new 94ba8a7 [NETBEANS-5438] Fix incorrect PHP xdebug3 port config when
copying to clipboard
new ad8c5be Merge pull request #2805 from
saulotoledo/fix/incorrect_xdebug3_clipboard_config
94ba8a7 is described below
commit 94ba8a7f0c1fe8b6491212681e2cdd3f4775f09f
Author: Saulo Soares de Toledo <[email protected]>
AuthorDate: Thu Mar 11 22:59:13 2021 +0100
[NETBEANS-5438] Fix incorrect PHP xdebug3 port config when copying to
clipboard
---
.../src/org/netbeans/modules/php/dbgp/ConnectionErrMessage.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/php/php.dbgp/src/org/netbeans/modules/php/dbgp/ConnectionErrMessage.java
b/php/php.dbgp/src/org/netbeans/modules/php/dbgp/ConnectionErrMessage.java
index 8d77411..b10630c 100644
--- a/php/php.dbgp/src/org/netbeans/modules/php/dbgp/ConnectionErrMessage.java
+++ b/php/php.dbgp/src/org/netbeans/modules/php/dbgp/ConnectionErrMessage.java
@@ -311,7 +311,7 @@ public class ConnectionErrMessage extends JPanel {
StringBuilder sb = new StringBuilder();
sb.append("xdebug.mode=debug").append(NEWLINE); // NOI18N
sb.append("xdebug.client_host=localhost").append(NEWLINE); // NOI18N
-
sb.append("xdebug.remote_port=").append(String.valueOf(PhpOptions.getInstance().getDebuggerPort())).append(NEWLINE);
// NOI18N
+
sb.append("xdebug.client_port=").append(String.valueOf(PhpOptions.getInstance().getDebuggerPort())).append(NEWLINE);
// NOI18N
sb.append(String.format("xdebug.idekey=\"%s\"",
PhpOptions.getInstance().getDebuggerSessionId())); // NOI18N
return sb.toString();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists