返り値の宣言であるnewのキャストをひたすら書き換えていく作業
$config = & new "hoge"
を
$config = new "hoge"
にしていく
Deprecated: Assigning the return value of new by reference is deprecated in [DocumentRoot]/pukiwiki/lib/func.php on line "xxx"
# vi [DocumentRoot]/pukiwiki/lib/func.php
- $config = &new Config('AutoLink');_/_/_/_/_/
+ $config = new Config('AutoLink');
Deprecated: Assigning the return value of new by reference is deprecated in [DocumentRoot]/pukiwiki/lib/convert_html.php on line "xxx"
# vi [DocumentRoot]/pukiwiki/lib/convert_html.php
- $body = & new Body(++$contents_id);_/_/_/_/_/
+ $body = new Body(++$contents_id);
- $obj = & new Paragraph('', $class);_/_/_/_/_/
+ $obj = new Paragraph('', $class);
- $row[] = & new TableCell($cell, $is_template);_/_/_/_/_/
+ $row[] = new TableCell($cell, $is_template);
- $this->contents = & new Element();_/_/_/_/_/
+ $this->contents = new Element();
Deprecated: Assigning the return value of new by reference is deprecated in [DocumentRoot]/pukiwiki/lib/config.php on line "xxx"
# vi [DocumentRoot]/pukiwiki/lib/config.php
- $obj = & new ConfigTable('');_/_/_/_/_/
+ $obj = new ConfigTable('');
- $obj = & new ConfigTable($line);_/_/_/_/_/
+ $obj = new ConfigTable($line);
- $obj = & new ConfigTable_Direct('', $obj);_/_/_/_/_/
+ $obj = new ConfigTable_Direct('', $obj);
- $obj = & new ConfigTable_Direct('', $obj);_/_/_/_/_/
+ $obj = new ConfigTable_Direct('', $obj);
- $obj = & new ConfigTable_Sequential('', $obj);_/_/_/_/_/
+ $obj = new ConfigTable_Sequential('', $obj);
- $this->objs[$title] = & new ConfigTable('*' . trim($title) . "\n");_/_/_/_/_/
+ $this->objs[$title] = new ConfigTable('*' . trim($title) . "\n");
Deprecated: Assigning the return value of new by reference is deprecated in [DocumentRoot]/pukiwiki/lib/link.php on line "xxx"
# vi [DocumentRoot]/pukiwiki/lib/link.php
- $obj = & new InlineConverter(NULL, array('note'));_/_/_/_/_/
+ $obj = new InlineConverter(NULL, array('note'));
Deprecated: Assigning the return value of new by reference is deprecated in [DocumentRoot]/pukiwiki/plugin/attach.inc.php on line "xxx"
# vi [DocumentRoot]/pukiwiki/plugin/attach.inc.php
- $obj = & new AttachPages($page);_/_/_/_/_/
+ $obj = new AttachPages($page);
- $obj = & new AttachPages($page, 0);_/_/_/_/_/
+ $obj = new AttachPages($page, 0);
- $obj = & new AttachFile($page, $file['name']);_/_/_/_/_/
+ $obj = new AttachFile($page, $file['name']);
- $obj = & new AttachFile($refer, $file, $age);_/_/_/_/_/
+ $obj = new AttachFile($refer, $file, $age);
- $obj = & new AttachFile($refer, $file, $age);_/_/_/_/_/
+ $obj = new AttachFile($refer, $file, $age);
- $obj = & new AttachFile($refer, $file, $age);_/_/_/_/_/
+ $obj = new AttachFile($refer, $file, $age);
- $obj = & new AttachFile($refer, $file, $age);_/_/_/_/_/
+ $obj = new AttachFile($refer, $file, $age);
- $obj = & new AttachFile($refer, $file, $age);_/_/_/_/_/
+ $obj = new AttachFile($refer, $file, $age);
- $obj = & new AttachPages($refer);_/_/_/_/_/
+ $obj = new AttachPages($refer);
- $this->files[$file][$age] = & new AttachFile($this->page, $file, $age);_/_/_/_/_/
+ $this->files[$file][$age] = new AttachFile($this->page, $file, $age);
- $this->pages[$_page] = & new AttachFiles($_page);_/_/_/_/_/
+ $this->pages[$_page] = new AttachFiles($_page);