[Easymod-cvs] easymod2/mods/easymod easymod_install.php,1.42,1.43
Status: Beta
Brought to you by:
wgeric
From: Markus P. <mar...@us...> - 2005-11-06 04:01:25
|
Update of /cvsroot/easymod/easymod2/mods/easymod In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20186/mods/easymod Modified Files: easymod_install.php Log Message: Fixed links to the EM FAQ and completed language entries for the installation help panels. Index: easymod_install.php =================================================================== RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_install.php,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** easymod_install.php 5 Nov 2005 23:25:15 -0000 1.42 --- easymod_install.php 6 Nov 2005 04:01:06 -0000 1.43 *************** *** 297,309 **** </tr> <tr> ! <td class="row1" align="left" valign="top"><span class="postbody"><? ! while( list($name, $paragraphs) = @each($lang['help']) ) { ! echo '<a name="' . $name . '" /></a><p>' . implode('<br />',$paragraphs) . "</p>\n"; } ! ?></span></td> </tr> <tr> ! <td class="spaceRow" height="1"><img src="../../../templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> --- 297,322 ---- </tr> <tr> ! <td class="row1" align="left" valign="top"><div class="postbody"><?php ! $first_item = true; ! foreach( $lang['help'] as $name => $paragraphs ) { ! if( $first_item ) ! { ! $first_item = false; ! } ! else ! { ! echo '<img src="' . $phpbb_root_path . 'templates/subSilver/images/spacer.gif" alt="" width="1" height="30" />' . "<hr />\n"; ! } ! echo '<p><a name="' . $name . '" /></a><b style="font-size:larger;">' . $paragraphs[0] . "</b></p>\n"; ! for( $i = 1; $i < count($paragraphs); $i++ ) ! { ! echo '<p>' . $paragraphs[$i] . "</p>\n"; ! } } ! ?></div></td> </tr> <tr> ! <td class="spaceRow" height="1"><img src="<?=$phpbb_root_path;?>templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> *************** *** 311,318 **** <br clear="all" /> - <!-- - <div align="center"><span class="copyright">CatDB {CATDB_VERSION} by <a href="http://www.phpbb.com/phpBB/profile.php?mode=viewprofile&u=190" target="_phpbb" class="copyright">Nuttzy</a><br /></span></div> - --> - <?php page_footer(); --- 324,327 ---- |