
Originally Posted by
LaCamus
I forget to put this in the other post...I found a bug around line 175, the line should read:
Code:
<tr> <!-- event ZC_Link row -->
<td class="event_heading" nowrap="nowrap">
<strong><?php echo TEXT_EVENT_ZC_LINK;?></strong></td>
<td class="event_description"><?php echo $event_array['ZC_link'];?></td>
for some reason there were 2 php echos for the built url with only one closing tag, not sure why.
Should I make the same change to this line as follows:
Code:
<td class="event_details_description"><a href="<?php echo $event_array['ADDL_link'];?>" target="_blank"><?php echo $event_array['ADDL_link'];?></td>
Becomes:
Code:
<td class="event_details_description"><?php echo $event_array['ADDL_link'];?></td>

Originally Posted by
LaCamus
Another thing, those links in the admin are being built with https:// (instead of
http://) if your site supports ssl. I don't think it should have been programmed that way. It should use whatever the default prefix is for the front side, instead it is using the back (admin) prefix. There should probably be some code in there to check the main url and pull the prefix from it to build the store link url.
Agreed.. I think I know how to make this change.. I'll give it a whirl..