MDL-40410 remove ampersands required for PHP strict standards lib/tablelib.php
This commit is contained in:
committed by
Sam Hemelryk
parent
881b8443ce
commit
d084d17c0e
+3
-3
@@ -797,7 +797,7 @@ class flexible_table {
|
||||
}
|
||||
return format_text($text, $format, $options);
|
||||
} else {
|
||||
$eci =& $this->export_class_instance();
|
||||
$eci = $this->export_class_instance();
|
||||
return $eci->format_text($text, $format, $options, $courseid);
|
||||
}
|
||||
}
|
||||
@@ -1528,9 +1528,9 @@ class table_spreadsheet_export_format_parent extends table_default_export_format
|
||||
$filename = $filename.'.'.$this->fileextension;
|
||||
$this->define_workbook();
|
||||
// format types
|
||||
$this->formatnormal =& $this->workbook->add_format();
|
||||
$this->formatnormal = $this->workbook->add_format();
|
||||
$this->formatnormal->set_bold(0);
|
||||
$this->formatheaders =& $this->workbook->add_format();
|
||||
$this->formatheaders = $this->workbook->add_format();
|
||||
$this->formatheaders->set_bold(1);
|
||||
$this->formatheaders->set_align('center');
|
||||
// Sending HTTP headers
|
||||
|
||||
Reference in New Issue
Block a user