$editor->EditCompleteDocument=true; And $editor->BaseHref="http://www.imvo.org";

  •  03-03-2008, 3:43 PM

    $editor->EditCompleteDocument=true; And $editor->BaseHref="http://www.imvo.org";

    It doesn't appear that $editor->EditCompleteDocument=true; And $editor->BaseHref="http://www.URL.com"; work together
     
    Here's my code...
     

    <?php
    $editor=new CuteEditor();
    $editor->ID="Editor1";

    $editor->FilesPath="CuteEditor_Files";
    $ClientID=$editor->ClientID();

    $editor->URLType="Absolute";
    $editor->EditCompleteDocument=true;  //with it set like this, BaseHref won't work, but if you comment this line out, BaseHref WILL work
    $editor->BaseHref=http://www.imvo.org;
    $editor->Draw();
    $editor=null;
    ?>
     
    Thanks,
    Kyle
View Complete Thread