From cbad102f88d285ae64e65bf10cddfdf2c615f138 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Sun, 2 Feb 2014 16:20:02 +0100 Subject: [ticket/11201] Split template file into multiple files PHPBB3-11201 --- .../prosilver/template/custom_profile_fields.html | 31 ---------------------- .../prosilver/template/profilefields/bool.html | 7 +++++ .../prosilver/template/profilefields/date.html | 5 ++++ .../prosilver/template/profilefields/dropdown.html | 5 ++++ .../prosilver/template/profilefields/int.html | 3 +++ .../prosilver/template/profilefields/string.html | 3 +++ .../prosilver/template/profilefields/text.html | 3 +++ 7 files changed, 26 insertions(+), 31 deletions(-) delete mode 100644 phpBB/styles/prosilver/template/custom_profile_fields.html create mode 100644 phpBB/styles/prosilver/template/profilefields/bool.html create mode 100644 phpBB/styles/prosilver/template/profilefields/date.html create mode 100644 phpBB/styles/prosilver/template/profilefields/dropdown.html create mode 100644 phpBB/styles/prosilver/template/profilefields/int.html create mode 100644 phpBB/styles/prosilver/template/profilefields/string.html create mode 100644 phpBB/styles/prosilver/template/profilefields/text.html (limited to 'phpBB/styles/prosilver/template') diff --git a/phpBB/styles/prosilver/template/custom_profile_fields.html b/phpBB/styles/prosilver/template/custom_profile_fields.html deleted file mode 100644 index 764cac7b3a..0000000000 --- a/phpBB/styles/prosilver/template/custom_profile_fields.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - checked="checked" /> - - - - - - - - - - - - diff --git a/phpBB/styles/prosilver/template/profilefields/bool.html b/phpBB/styles/prosilver/template/profilefields/bool.html new file mode 100644 index 0000000000..f1d7ba75f4 --- /dev/null +++ b/phpBB/styles/prosilver/template/profilefields/bool.html @@ -0,0 +1,7 @@ + + + + + checked="checked" /> + + diff --git a/phpBB/styles/prosilver/template/profilefields/date.html b/phpBB/styles/prosilver/template/profilefields/date.html new file mode 100644 index 0000000000..5d5bc04ed6 --- /dev/null +++ b/phpBB/styles/prosilver/template/profilefields/date.html @@ -0,0 +1,5 @@ + + + + + diff --git a/phpBB/styles/prosilver/template/profilefields/dropdown.html b/phpBB/styles/prosilver/template/profilefields/dropdown.html new file mode 100644 index 0000000000..243b7039da --- /dev/null +++ b/phpBB/styles/prosilver/template/profilefields/dropdown.html @@ -0,0 +1,5 @@ + + + diff --git a/phpBB/styles/prosilver/template/profilefields/int.html b/phpBB/styles/prosilver/template/profilefields/int.html new file mode 100644 index 0000000000..a6f9a0a49e --- /dev/null +++ b/phpBB/styles/prosilver/template/profilefields/int.html @@ -0,0 +1,3 @@ + + + diff --git a/phpBB/styles/prosilver/template/profilefields/string.html b/phpBB/styles/prosilver/template/profilefields/string.html new file mode 100644 index 0000000000..cf457d39ad --- /dev/null +++ b/phpBB/styles/prosilver/template/profilefields/string.html @@ -0,0 +1,3 @@ + + + diff --git a/phpBB/styles/prosilver/template/profilefields/text.html b/phpBB/styles/prosilver/template/profilefields/text.html new file mode 100644 index 0000000000..f54c63925c --- /dev/null +++ b/phpBB/styles/prosilver/template/profilefields/text.html @@ -0,0 +1,3 @@ + + + -- cgit v1.2.1