Small code fix patch
Posted: 04 Mar 2012, 18:08
Hi all, I am using Eclipse IDE for developing the PHP code. I saw a small mistake in the file:
components/com_phocagallery/views/category/tmpl/default_statistics.php
Can the developers apply this after approval to the next release?
Here's my small patch:
Also some divs were not closed, but I couldn't check how they should be closed, so I didn't fix that.
Thanks all! Keep up the good work
components/com_phocagallery/views/category/tmpl/default_statistics.php
Can the developers apply this after approval to the next release?
Here's my small patch:
Code: Select all
Index: default_statistics.php
===================================================================
--- default_statistics.php (revision 2)
+++ default_statistics.php (working copy)
@@ -50,7 +50,7 @@
echo JHTML::_( 'image.site', $value->linkthumbnailpath, '', '', '', $value->altvalue, array('class' => 'pg-image'));
}
- ?></a>
+ ?>></a>
</div>
</div>
@@ -129,7 +129,7 @@
} else {
echo JHTML::_( 'image', $value->linkthumbnailpath, $value->altvalue, array('class' => 'pg-image') );
}
- ?></a>
+ ?>></a>
</div>
</div>
Thanks all! Keep up the good work