Skip to content

Commit

Permalink
Merge branch 'MDL-36845_23' of git://github.com/timhunt/moodle into M…
Browse files Browse the repository at this point in the history
…OODLE_23_STABLE
  • Loading branch information
danpoltawski committed Dec 11, 2012
2 parents 4e66b89 + 832b653 commit 957dfed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions lib/excellib.class.php
Expand Up @@ -74,8 +74,8 @@ function MoodleExcelWorkbook($filename) {
* @param string $name Name of the sheet
* @return object MoodleExcelWorksheet
*/
function &add_worksheet($name = '') {
/// Create the Moodle Worksheet. Returns one pointer to it
function add_worksheet($name = '') {
// Create the Moodle Worksheet. Returns one pointer to it
$ws = new MoodleExcelWorksheet ($name, $this->pear_excel_workbook, $this->latin_output);
return $ws;
}
Expand Down Expand Up @@ -138,6 +138,9 @@ class MoodleExcelWorksheet {
*/
function MoodleExcelWorksheet($name, &$workbook, $latin_output=false) {

// Replace any characters in the name that Excel cannot cope with.
$name = strtr($name, '[]*/\?:', ' ');

if (strlen($name) > 31) {
// Excel does not seem able to cope with sheet names > 31 chars.
// With $latin_output = false, it does not cope at all.
Expand Down
2 changes: 1 addition & 1 deletion lib/tablelib.php
Expand Up @@ -1487,7 +1487,7 @@ function start_document($filename) {
}

function start_table($sheettitle) {
$this->worksheet =& $this->workbook->add_worksheet($sheettitle);
$this->worksheet = $this->workbook->add_worksheet($sheettitle);
$this->rownum=0;
}

Expand Down

0 comments on commit 957dfed

Please sign in to comment.