Slide Show Error

Permalink
Setup the block Slide Show on a page with images from the File Manager. I used some generic images and now I want to change them. When I go edit the Slide Show block, I get the following error:

Fatal error: Call to a member function setBlockAreaObject() on a non-object in /hsphere/local/home/bigjohn7/wrensumc.com/concrete/tools/edit_block_popup.php on line 15

I cannot edit or delete the block. Anyone have an answer?

johnbryan
 
johnbryan replied on at Permalink Reply
johnbryan
A little more info. When I edit another block on the site and publish, the slide show images run as expected. When I close the site and then return, the slide show doesn't show. This is the code that is present when the slide show works but is absent when it doesn't:
//<![CDATA[
var ccmSlideShowHelper94 = {
   bID:94,
   imgNum:0,
   init:function(){
      this.displayWrap=$('#ccm-SlideshowBlock-display'+this.bID); 
      if(this.imgInfos.length==0){
         //alert('There are no images in this slideshow');
         return false;
      }
      var maxHeight=0;
      for(var i=0;i<this.imgInfos.length;i++){
         this.addImg(i);
         if(maxHeight==0 || this.imgInfos[i].imgHeight > maxHeight)
            maxHeight=this.imgInfos[i].imgHeight;