coppermine-gallery.com/forum

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: kaldenord.com on January 01, 2004, 04:36:37 PM

Title: Rules and terms
Post by: kaldenord.com on January 01, 2004, 04:36:37 PM
When a user is registering in the coppermine 1.2.1 he/she gets a "rules & terms" dialog where they need to accept the rules and terms to continue to register as a user..

Where can I change this rules & terms tekst?
Title: Rules and terms
Post by: Casper on January 01, 2004, 04:54:30 PM
In lang/'your language'.php.  Look for

// File register.php & profile.php
// ------------------------------------------------------------------------- //


you will find it directly after this.
Title: Rules and terms
Post by: kaldenord.com on January 01, 2004, 05:17:10 PM
Thanks.. that solved it for me, but it made a new request come too

I did write my spesific terms like this

texttexttexttexttext
1. Rule
2. Rule
 a. term
 b. term

but it displays it like this
texttexttexttexttext 1. Rule 2.Rule a. term b.term

Is there a way that I can put a linebreak into the text?
Title: Rules and terms
Post by: Casper on January 01, 2004, 05:31:30 PM
Yes, simply use the html code, as was in before.
Just add a <br/> where you want a break.
Title: Rules and terms
Post by: kaldenord.com on January 01, 2004, 05:36:54 PM
There was no html kode in before..

But using the <br> kode worked all fine.

Thank you for the help so far
Title: Rules and terms
Post by: Joachim Müller on January 01, 2004, 05:38:39 PM
you can use html commands there, like this:$lang_register_disclamer = <<<EOT
<ol>
<li>While the administrators of {SITE_NAME} will attempt to remove or edit any generally objectionable material as quickly as possible, it is impossible to review every post. Therefore you acknowledge that all posts made to this site express the views and opinions of the author and not the administrators or webmaster (except for posts by these people) and hence will not be held liable.</li>
<li><b>No bullshit</b><br />
You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any applicable laws. You agree that the webmaster, administrator and moderators of {SITE_NAME} have the right to remove or edit any content at any time should they see fit. As a user you agree to any information you have entered above being stored in a database. While this information will not be disclosed to any third party without your consent the webmaster and administrator cannot be held responsible for any hacking attempt that may lead to the data being compromised.</li>
<li><b>Privacy</b><br />
This site uses cookies to store information on your local computer. These cookies serve only to improve your viewing pleasure. The email address is used only for confirming your registration details and password.</li>
<li>Another rule
     <ul>
     <li>Term One</li>
     <li>Term Two</li>
     </ul>
</li>
</ul>
By clicking 'I agree' below you agree to be bound by these conditions.
EOT;

<br> actually is html code, isn't it :wink: ?

GauGau
Title: Rules and terms
Post by: Casper on January 01, 2004, 05:39:14 PM
Ok, I assumed because there was in the english.php, there would be in yours too, sorry about that.

Anyway, glad it helped  :wink: