DedeCMS图集编辑器改为完整的文章编辑器的方法

我们在使用织梦过程中会发现,图集的内容编辑器的功能要比文章的编辑器少很多,发布内容的时候不方便使用,所以我们可以把图集的编辑器改成文章的编辑器来使用,就好很多了。

修改方法如下:

/dede/templets/album_edit.htm 中的:

<?php GetEditor(
“body”,$body,
450,
“Diy”); ?>

 

换成:

<?php GetEditor(
“body”,$addRow[
‘body’],
450); ?>

 

/dede/templets/album_add.htm 中的:

<?php GetEditor(
“body”,
“”,
450,
“Diy”); ?>

 

换成:

<?php GetEditor(
“body”,$addRow[
‘body’],
450); ?>

 

即可。