From a506e21fa7a459b0c6ff740ddbc8a460017a8709 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 3 Mar 2014 12:15:09 +0100 Subject: [ticket/12243] Split custom_profile_fields.html into 1 file for each type PHPBB3-12243 --- .../subsilver2/template/custom_profile_fields.html | 31 ---------------------- .../subsilver2/template/profilefields/bool.html | 7 +++++ .../subsilver2/template/profilefields/date.html | 5 ++++ .../template/profilefields/dropdown.html | 5 ++++ .../subsilver2/template/profilefields/int.html | 3 +++ .../subsilver2/template/profilefields/string.html | 3 +++ .../subsilver2/template/profilefields/text.html | 3 +++ 7 files changed, 26 insertions(+), 31 deletions(-) delete mode 100644 phpBB/styles/subsilver2/template/custom_profile_fields.html create mode 100644 phpBB/styles/subsilver2/template/profilefields/bool.html create mode 100644 phpBB/styles/subsilver2/template/profilefields/date.html create mode 100644 phpBB/styles/subsilver2/template/profilefields/dropdown.html create mode 100644 phpBB/styles/subsilver2/template/profilefields/int.html create mode 100644 phpBB/styles/subsilver2/template/profilefields/string.html create mode 100644 phpBB/styles/subsilver2/template/profilefields/text.html (limited to 'phpBB/styles/subsilver2/template') diff --git a/phpBB/styles/subsilver2/template/custom_profile_fields.html b/phpBB/styles/subsilver2/template/custom_profile_fields.html deleted file mode 100644 index 3dabedda06..0000000000 --- a/phpBB/styles/subsilver2/template/custom_profile_fields.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - {bool.options.VALUE}    - - checked="checked" /> - - - - - - - - - {L_DAY}{L_COLON} - {L_MONTH}{L_COLON} - {L_YEAR}{L_COLON} - diff --git a/phpBB/styles/subsilver2/template/profilefields/bool.html b/phpBB/styles/subsilver2/template/profilefields/bool.html new file mode 100644 index 0000000000..f57bd4e4da --- /dev/null +++ b/phpBB/styles/subsilver2/template/profilefields/bool.html @@ -0,0 +1,7 @@ + + + {bool.options.VALUE}    + + checked="checked" /> + + diff --git a/phpBB/styles/subsilver2/template/profilefields/date.html b/phpBB/styles/subsilver2/template/profilefields/date.html new file mode 100644 index 0000000000..e2da2463a5 --- /dev/null +++ b/phpBB/styles/subsilver2/template/profilefields/date.html @@ -0,0 +1,5 @@ + +{L_DAY}{L_COLON} +{L_MONTH}{L_COLON} +{L_YEAR}{L_COLON} + diff --git a/phpBB/styles/subsilver2/template/profilefields/dropdown.html b/phpBB/styles/subsilver2/template/profilefields/dropdown.html new file mode 100644 index 0000000000..16242da895 --- /dev/null +++ b/phpBB/styles/subsilver2/template/profilefields/dropdown.html @@ -0,0 +1,5 @@ + + + diff --git a/phpBB/styles/subsilver2/template/profilefields/int.html b/phpBB/styles/subsilver2/template/profilefields/int.html new file mode 100644 index 0000000000..067921e320 --- /dev/null +++ b/phpBB/styles/subsilver2/template/profilefields/int.html @@ -0,0 +1,3 @@ + + + diff --git a/phpBB/styles/subsilver2/template/profilefields/string.html b/phpBB/styles/subsilver2/template/profilefields/string.html new file mode 100644 index 0000000000..5a98562e2a --- /dev/null +++ b/phpBB/styles/subsilver2/template/profilefields/string.html @@ -0,0 +1,3 @@ + + + diff --git a/phpBB/styles/subsilver2/template/profilefields/text.html b/phpBB/styles/subsilver2/template/profilefields/text.html new file mode 100644 index 0000000000..df2474ad3e --- /dev/null +++ b/phpBB/styles/subsilver2/template/profilefields/text.html @@ -0,0 +1,3 @@ + + + -- cgit v1.2.1