diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-06-20 13:38:36 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-06-20 13:38:36 +0200 |
commit | 6221ba4dd172428cf10eedad429a76d390aa2219 (patch) | |
tree | 4d618120227e2d7c8aabb211fdd3b94be1a1000d | |
parent | 6d248097e5422bf769fb3756e64e36e243865f79 (diff) | |
download | forums-6221ba4.tar forums-6221ba4.tar.gz forums-6221ba4.tar.bz2 forums-6221ba4.tar.xz forums-6221ba4.zip |
[ticket/9665] Allow preview of signature when it is the string "0".
Since only the SIGNATURE_PREVIEW parameter is evaluated in the templates
<!-- IF SIGNATURE_PREVIEW --> will not allow the signature to be "0".
<!-- IF SIGNATURE_PREVIEW != '' --> however does allow "0".
PHPBB3-9665
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_profile_signature.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/ucp_profile_signature.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_profile_signature.html b/phpBB/styles/prosilver/template/ucp_profile_signature.html index 5d25d2d9f4..ab23b84076 100644 --- a/phpBB/styles/prosilver/template/ucp_profile_signature.html +++ b/phpBB/styles/prosilver/template/ucp_profile_signature.html @@ -4,7 +4,7 @@ <h2>{L_TITLE}</h2> -<!-- IF SIGNATURE_PREVIEW --> +<!-- IF SIGNATURE_PREVIEW != '' --> <div class="panel"> <div class="inner"><span class="corners-top"><span></span></span> <h3>{L_SIGNATURE_PREVIEW}</h3> diff --git a/phpBB/styles/subsilver2/template/ucp_profile_signature.html b/phpBB/styles/subsilver2/template/ucp_profile_signature.html index 2b396ea0df..a33726e166 100644 --- a/phpBB/styles/subsilver2/template/ucp_profile_signature.html +++ b/phpBB/styles/subsilver2/template/ucp_profile_signature.html @@ -93,7 +93,7 @@ </td> </tr> -<!-- IF SIGNATURE_PREVIEW --> +<!-- IF SIGNATURE_PREVIEW != '' --> <tr> <th colspan="2" valign="middle">{L_SIGNATURE_PREVIEW}</th> </tr> |