How to remove Terms and Conditions How to remove Terms and Conditions
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

How to remove Terms and Conditions

Started by iblazed, March 21, 2006, 02:56:37 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

iblazed

How do you remove the terms and conditions page so that when a user clicks on register it skips the Terms and Conditions and just goes right to the register page?
(Reason for this is I'm just going to have a checkbox at the bottom of the register page where they can agree to the terms and it will have a link to the terms)

Nibbler

Look at the end of register.php for


if (isset($_POST['agree'])) {
    input_user_info();
  } elseif (isset($_POST['submit'])) {
    $errors = '';
    if (!check_user_info($errors)) {
      input_user_info($errors);
    }
  } else {
    display_disclaimer();
  }


Changing that to


  if (isset($_POST['submit'])) {
    $errors = '';
    if (!check_user_info($errors)) {
      input_user_info($errors);
    }
  } else {
    input_user_info();
  }


should remove the disclaimer.

Joachim Müller

Should be an admin option in cpg1.5.x, so I'm moving this thread accordingly (to make sure I remember to add it).

cgc0202

Quote from: GauGau on March 22, 2006, 09:21:22 AM
Should be an admin option in cpg1.5.x, so I'm moving this thread accordingly (to make sure I remember to add it).

You are correct.  This should be an Admin option.  The original proponent has valid reasons for wanting to modify the presentation.

However, in the US where there are so many nuts who will sue for the slightest reason, the presence of the "Terms and Conditions" as a precondition for going further and being able to register is a very good strategy.

The developers of Coppermine should be lauded for having the foresight to include this option.  Many programs that target amateur users do not even have this disclaimer note.  In fact, I was surprised when the creator of a links directory I was quite interested with did not see any reason for registration at all, let alone to have a defined "Terms and Conditions" or disclaimer clause.

By the way, is there any timetable when 1.5x (stable) is likely to be released for public consumption?  How buggy is the alpha (test) version?

CGC

Joachim Müller

I'm currently working on this feature, so it will be addressed in the devel branch of the cvs pretty soon. There isn't even an alpha version of cpg1.5.x out, the only method you can get it is checking out the devel branch of the cvs. There is no scheduled release date - we never publish schedules, because coppermine is a group effort of volunteers and there is no saying when devs will have the time to work on the project.

Joachim Müller

committed to devel branch of the svn - feature will be in cpg1.5.x. Marking thread accordingly.