Yes, Moodle is a web application and you only need a web browser to use it.
Martin Dougiamas
Posts made by Martin Dougiamas
Try switching the course format (in the Course Settings) to "Social Format". This replaces the course activities in the middle with forum posts. Is that what you wanted?
Hmm ... I tried that command in a clean directory and got a fresh new checkout of 2.0 dev. Using the UK mirror and everything.
If I was updating an existing CVS checkout to the latest head I would go into that top directory and just use:
cvs -q update -dPA
The A means get the head (aka trunk) version.
If I was updating an existing CVS checkout to the latest head I would go into that top directory and just use:
cvs -q update -dPA
The A means get the head (aka trunk) version.
Very strange ... perhaps the mirror is having problems? Dan?
Sure, I was going to put it in core anyway. Basically it's the patch below, plus this in config.php: $CFG->hideloginpanel = true;
Index: index_form.html
===================================================================
RCS file: /cvsroot/moodle/moodle/login/index_form.html,v
retrieving revision 1.50.2.1
diff -r1.50.2.1 index_form.html
2c2
< if ($show_instructions) {
---
> if ($show_instructions and empty($CFG->hideloginpanel)) {
8a9
> <?php if (empty($CFG->hideloginpanel)) { ?>
74a76
> <?php } ?>
Index: index_form.html
===================================================================
RCS file: /cvsroot/moodle/moodle/login/index_form.html,v
retrieving revision 1.50.2.1
diff -r1.50.2.1 index_form.html
2c2
< if ($show_instructions) {
---
> if ($show_instructions and empty($CFG->hideloginpanel)) {
8a9
> <?php if (empty($CFG->hideloginpanel)) { ?>
74a76
> <?php } ?>