Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca3e8e9
)
MDL-20501 survey module: fix text alignment for right to left language. Change undefi...
author
Rossiani Wijaya
<rwijaya@moodle.com>
Mon, 1 Aug 2011 09:42:23 +0000
(17:42 +0800)
committer
Rossiani Wijaya
<rwijaya@moodle.com>
Mon, 1 Aug 2011 09:42:23 +0000
(17:42 +0800)
mod/survey/index.php
patch
|
blob
|
blame
|
history
diff --git
a/mod/survey/index.php
b/mod/survey/index.php
index
5e017ef
..
6154acf
100644
(file)
--- a/
mod/survey/index.php
+++ b/
mod/survey/index.php
@@
-38,13
+38,12
@@
}
$table = new html_table();
+ $table->width = '100%';
if ($usesections) {
- $table->head = array ($strsectionname, $strname, $strintro);
- $table->align = array ('CENTER', 'LEFT', 'LEFT');
+ $table->head = array ($strsectionname, $strname, $strstatus);
} else {
- $table->head = array ($strname, $strintro);
- $table->align = array ('LEFT', 'LEFT');
+ $table->head = array ($strname, $strstatus);
}
$currentsection = '';