Fixed error in ad_mobile_image
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 2 Dec 2012 04:45:05 +0000 (05:45 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 2 Dec 2012 04:45:05 +0000 (05:45 +0100)
The Ad table changed just 2 commits before

apps/companyfront/modules/ad/actions/actions.class.php
apps/companyfront/modules/ad/templates/showSuccess.php
apps/userfront/modules/api/templates/getadsbygpsSuccess.json.php

index 76a177b..92ba8fb 100644 (file)
@@ -161,7 +161,7 @@ class adActions extends sfActions
 
     //Remove picture from file system.
     $fs = new sfFilesystem();
-    $fs->remove(sfConfig::get('app_default_picture_directory').$ad->getAdMobileImageLink());
+    $fs->remove(sfConfig::get('app_default_picture_directory').$ad->getAdMobileImage());
     //Remove ad from database.
     $ad->delete();
 
index e7007e9..28bbb5a 100644 (file)
@@ -14,7 +14,7 @@
     </tr>
     <tr>
       <th>Ad mobile image link:</th>
-      <td><?php echo $ad->getAdMobileImageLink() ?></td>
+      <td><?php echo $ad->getAdMobileImage() ?></td>
     </tr>
     <tr>
       <th>Created at:</th>
index 0e243e6..ee91c2a 100644 (file)
@@ -1,6 +1,6 @@
 [
 <?php foreach ($ads as $ad): ?>
-  { "id" : "<?php echo $ad->getAd()->getId()?>", "image" : "<?php echo $ad->getAd()->getAdMobileImageLink() ?>", "link" : "<?php echo $ad->getAdLink()?>",
+  { "id" : "<?php echo $ad->getAd()->getId()?>", "image" : "<?php echo $ad->getAd()->getAdMobileImage() ?>", "link" : "<?php echo $ad->getAdLink()?>",
     "text" : "<?php echo $ad->getAdMobileText()?>", "adname" : "<?php echo $ad->getAdName()?>" },
 <?php endforeach ?>
 ]