diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2014-04-07 21:42:30 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2014-04-07 21:42:30 +0200 |
| commit | 91a1c3af901f51d79751b733e48e8bcddc81d263 (patch) | |
| tree | eb3ee4d1e89ea7779ddfde365e1da7758292feb8 /phpBB/styles/prosilver/template/ucp_prefs_personal.html | |
| parent | 966a2b4892762f3a1f032089d0b01c97a1d1c2e1 (diff) | |
| download | forums-91a1c3af901f51d79751b733e48e8bcddc81d263.tar forums-91a1c3af901f51d79751b733e48e8bcddc81d263.tar.gz forums-91a1c3af901f51d79751b733e48e8bcddc81d263.tar.bz2 forums-91a1c3af901f51d79751b733e48e8bcddc81d263.tar.xz forums-91a1c3af901f51d79751b733e48e8bcddc81d263.zip | |
[ticket/12372] Rename JS function dE() to phpbb.toggleDisplay()
PHPBB3-12372
Diffstat (limited to 'phpBB/styles/prosilver/template/ucp_prefs_personal.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/ucp_prefs_personal.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_prefs_personal.html b/phpBB/styles/prosilver/template/ucp_prefs_personal.html index a5b4852af8..d07aab1a89 100644 --- a/phpBB/styles/prosilver/template/ucp_prefs_personal.html +++ b/phpBB/styles/prosilver/template/ucp_prefs_personal.html @@ -66,7 +66,7 @@ <dl> <dt><label for="dateformat">{L_BOARD_DATE_FORMAT}{L_COLON}</label><br /><span>{L_BOARD_DATE_FORMAT_EXPLAIN}</span></dt> <dd> - <select name="dateoptions" id="dateoptions" onchange="if(this.value=='custom'){dE('custom_date',1);}else{dE('custom_date',-1);} if (this.value == 'custom') { document.getElementById('dateformat').value = default_dateformat; } else { document.getElementById('dateformat').value = this.value; }"> + <select name="dateoptions" id="dateoptions" onchange="if(this.value=='custom'){phpbb.toggleDisplay('custom_date',1);}else{phpbb.toggleDisplay('custom_date',-1);} if (this.value == 'custom') { document.getElementById('dateformat').value = default_dateformat; } else { document.getElementById('dateformat').value = this.value; }"> {S_DATEFORMAT_OPTIONS} </select> </dd> @@ -109,11 +109,11 @@ // Show/hide custom field if (e.selectedIndex == e.length - 1) { - dE('custom_date',1); + phpbb.toggleDisplay('custom_date',1); } else { - dE('custom_date',-1); + phpbb.toggleDisplay('custom_date',-1); } } |
