diff options
author | Matt Friedman <maf675@gmail.com> | 2014-04-01 18:02:27 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2014-04-01 18:02:27 -0700 |
commit | 6de03508367656de57e37a2e5c266b46dd360a5e (patch) | |
tree | 4273d6c87bb91e817ba64de610975d07c740cabd /phpBB/styles/prosilver | |
parent | 18645aa0693e2ba61cd29dc252afbf5cd446ee67 (diff) | |
download | forums-6de03508367656de57e37a2e5c266b46dd360a5e.tar forums-6de03508367656de57e37a2e5c266b46dd360a5e.tar.gz forums-6de03508367656de57e37a2e5c266b46dd360a5e.tar.bz2 forums-6de03508367656de57e37a2e5c266b46dd360a5e.tar.xz forums-6de03508367656de57e37a2e5c266b46dd360a5e.zip |
[ticket/12342] Fix the Custom Dates function in UCP Prefs Global
Function was being called before dE() function exists,
causing it to fail. Should be called when the page/window
is ready.
PHPBB3-12342
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_prefs_personal.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_prefs_personal.html b/phpBB/styles/prosilver/template/ucp_prefs_personal.html index 8111496dcb..a5b4852af8 100644 --- a/phpBB/styles/prosilver/template/ucp_prefs_personal.html +++ b/phpBB/styles/prosilver/template/ucp_prefs_personal.html @@ -117,7 +117,7 @@ } } - customDates(); + window.onload = customDates; // ]]> </script> |