Skip to content

Commit 645a4e6

Browse files
author
jokob-sk
committedMay 8, 2024
Multi-edit urlencode #660
1 parent 9007658 commit 645a4e6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed
 

‎front/multiEditCore.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ function massUpdateField(id) {
256256
columnValue = inputElement.is(':checked') ? 1 : 0;
257257
} else {
258258
// For other input types (like textboxes), simply retrieve their values
259-
columnValue = inputElement.val();
259+
columnValue = encodeURIComponent(inputElement.val());
260260
}
261261

262262
var targetColumns = inputElement.attr('data-my-targetColumns');

‎front/plugins/internet_ip/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## Overview
22

3-
Plugin to run regular Internet connectivity and IP checks.
3+
Plugin to run regular Internet connectivity and IP checks. Change the [dig utility](https://linux.die.net/man/1/dig) arguments if you have issues resolving your Internet IP. Arguments are added at the end of the following command: `dig +short`. Tested with:
4+
5+
- `@ns1.google.com -t txt o-o.myaddr.l.google.com`
6+
- `-4 myip.opendns.com @resolver1.opendns.com`
47

58
### Usage
69

‎front/plugins/internet_ip/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
"description": [
171171
{
172172
"language_code": "en_us",
173-
"string": "Change the <a href=\"https://linux.die.net/man/1/dig\" target=\"_blank\">dig utility</a> arguments if you have issues resolving your Internet IP. Arguments are added at the end of the following command: <code>dig +short </code>."
173+
"string": "Change the <a href=\"https://linux.die.net/man/1/dig\" target=\"_blank\">dig utility</a> arguments if you have issues resolving your Internet IP. Arguments are added at the end of the following command: <code>dig +short </code>. Tested with: <br/> <ul> <li><code>@ns1.google.com -t txt o-o.myaddr.l.google.com</code></li><li> <code>-4 myip.opendns.com @resolver1.opendns.com</code></li></ul>"
174174
},
175175
{
176176
"language_code": "es_es",

0 commit comments

Comments
 (0)