Datawalke / Coordino

Self-hosted Knowledge Software your question & answer system written on top of the CakePHP Framework
http://coordino.com
MIT License
714 stars 173 forks source link

Miss-link to 3rdparty site #8

Closed gotoitguy closed 12 years ago

gotoitguy commented 13 years ago

While looking through the features of Coordino, I noticed the "link" button to link to answers mistakingly links to "ej.com".

app/views/posts/view.ctp: 231 <?=$html->link( 232 'link', 233 'http://ej.com/questions/' 234 . $question['Post']['public_key'] . '/' 235 . $question['Post']['urltitle'] 236 . '#a' . $answer['Answer']['public_key'] 237 ); 238 ?>

Corrected code: 231 <?=$html->link( 232 'link', 233 '/questions/' 234 . $question['Post']['public_key'] . '/' 235 . $question['Post']['urltitle'] 236 . '#a' . $answer['Answer']['public_key'] 237 ); 238 ?>

Datawalke commented 13 years ago

Thanks for the heads up! I will push this out today.