Rules and terms Rules and terms
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Rules and terms

Started by kaldenord.com, January 01, 2004, 04:36:37 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

kaldenord.com

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?

Casper

In lang/'your language'.php.  Look for

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


you will find it directly after this.
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

kaldenord.com

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?

Casper

Yes, simply use the html code, as was in before.
Just add a <br/> where you want a break.
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

kaldenord.com

There was no html kode in before..

But using the <br> kode worked all fine.

Thank you for the help so far

Joachim Müller

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

Casper

Ok, I assumed because there was in the english.php, there would be in yours too, sorry about that.

Anyway, glad it helped  :wink:
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here