squirrelmail.patch 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Index: functions/display_messages.php
  2. --- functions/display_messages.php.orig 2005-03-21 23:18:32 +0100
  3. +++ functions/display_messages.php 2005-07-30 21:15:29 +0200
  4. @@ -88,8 +88,8 @@
  5. "\"$width_and_height /><br />\n";
  6. }
  7. echo ( $hide_sm_attributions ? '' :
  8. - '<small>' . sprintf (_("SquirrelMail version %s"), $version) . '<br />'.
  9. - _("By the SquirrelMail Project Team") . "<br /></small>\n" ).
  10. + '<br />'.
  11. + "<br />\n" ).
  12. '<table cellspacing="1" cellpadding="0" bgcolor="'.$color[1].'" width="70%">'.
  13. '<tr><td>'.
  14. '<table width="100%" border="0" bgcolor="'.$color[4].'" align="center">'.
  15. Index: functions/imap_general.php
  16. --- functions/imap_general.php.orig 2005-05-20 12:37:34 +0200
  17. +++ functions/imap_general.php 2005-07-30 21:14:27 +0200
  18. @@ -568,6 +568,7 @@
  19. set_up_language($squirrelmail_language, true);
  20. include_once(SM_PATH . 'functions/display_messages.php' );
  21. + do_hook('invalid_login'); /* used with squirrelmail_logger */
  22. sqsession_destroy();
  23. /* terminate the session nicely */
  24. sqimap_logout($imap_stream);
  25. Index: src/login.php
  26. --- src/login.php.orig 2005-06-22 15:45:35 +0200
  27. +++ src/login.php 2005-07-30 21:15:39 +0200
  28. @@ -132,8 +132,8 @@
  29. ' /><br />' . "\n"
  30. : '' ).
  31. ( (isset($hide_sm_attributions) && $hide_sm_attributions) ? '' :
  32. - '<small>' . sprintf (_("SquirrelMail version %s"), $version) . '<br />' ."\n".
  33. - ' ' . _("By the SquirrelMail Project Team") . '<br /></small>' . "\n" ) .
  34. + '<br />' ."\n".
  35. + '<br />' . "\n" ) .
  36. html_tag( 'table',
  37. html_tag( 'tr',
  38. html_tag( 'td',
  39. Index: src/right_main.php
  40. --- src/right_main.php.orig 2005-06-15 23:12:05 +0200
  41. +++ src/right_main.php 2005-07-30 21:14:27 +0200
  42. @@ -182,6 +182,7 @@
  43. )
  44. ) ,
  45. 'center', $color[9], 'width="70%" cellpadding="0" cellspacing="3" border="0"' );
  46. + echo "<br />\n";
  47. }
  48. }
  49. }