make comics link to next page except on latest
klange -
99d2560fe7c2
Not Reviewed
Show More
Add another comment
TODOs: 0 unresolved 0 Resolved
COMMENTS: 0 General 0 Inline
@@ -114,7 +114,13 if ($STRIP['type'] == 24 || $_GET['hidden_vn_test'] == 'yes_please') {
114 /* TODO: Support more than just one of these. */
114 /* TODO: Support more than just one of these. */
115 printf('<iframe src="endgames-vn/index.htm" scrolling="no"></iframe>');
115 printf('<iframe src="endgames-vn/index.htm" scrolling="no"></iframe>');
116 } else {
116 } else {
117 printf('<img align="middle" src="%s/%04d.%s" alt="%s" title="%s" />', SITE_STRIP, $EFFECTIVE_ID, $STRIP['ext'], $alttext, utfentities($tooltip));
117 if($EFFECTIVE_ID < $MAX_METHOD_ID) {
118 printf('<a href="./strip/%d">', $EFFECTIVE_ID + 1);
119 }
120 printf('<img align="middle" src="%s/%04d.%s" alt="%s" title="%s" />', SITE_STRIP, $EFFECTIVE_ID, $STRIP['ext'], $alttext, utfentities($tooltip));
121 if($EFFECTIVE_ID < $MAX_METHOD_ID) {
122 printf('</a>');
123 }
118 }
124 }
119 if ($EFFECTIVE_ID == 1564) {
125 if ($EFFECTIVE_ID == 1564) {
120 ?>
126 ?>
Comments 0
You need to be logged in to leave comments. Login now