Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
integration
prechecker
Commits
220776ac
Commit
220776ac
authored
Jun 20, 2005
by
thepurpleblob
Browse files
Merged from STABLE
parent
85ce66b5
Changes
3
Hide whitespace changes
Inline
Side-by-side
config-dist.php
View file @
220776ac
...
...
@@ -257,7 +257,7 @@ $CFG->admin = 'admin';
// $CFG->apacheloguser = 3; // Log username.
// To get the values logged in Apache's log, add to your httpd.conf
// the following statements. In the General part put:
// LogFormat "%h %l %{MOODLEUSER}n %t \"%r\" %
>
s %b \"%{Referer}i\" \"%{User-Agent}i\"" moodleformat
// LogFormat "%h %l %{MOODLEUSER}n %t \"%r\" %s %b \"%{Referer}i\" \"%{User-Agent}i\"" moodleformat
// And in the part specific to your Moodle install / virtualhost:
// CustomLog "/your/path/to/log" moodleformat
// CAUTION: Use of this option will expose usernames in the Apache log,
...
...
lib/moodlelib.php
View file @
220776ac
...
...
@@ -4371,6 +4371,9 @@ function get_string($identifier, $module='', $a=NULL) {
$module
=
'moodle'
;
}
// if $a happens to have % in it, double it so sprintf() doesn't break
$a
=
str_replace
(
'%'
,
'%%'
,
$a
);
/// Define the two or three major locations of language strings for this module
$locations
=
array
(
$CFG
->
dataroot
.
'/lang/'
,
$CFG
->
dirroot
.
'/lang/'
);
...
...
mod/assignment/config.html
View file @
220776ac
<form
method=
"post"
action=
"module.php"
name=
"form"
>
<input
type=
"hidden"
name=
"sesskey"
value=
"<?php echo sesskey(); ?>"
/>
<table
cellpadding=
9
cellspacing=
0
>
<tr
valign=
top
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment