[Isocial-svn] SF.net SVN: isocial: [87]
Status: Pre-Alpha
Brought to you by:
aguidrevitch
From: <agu...@us...> - 2008-03-16 20:08:28
|
Revision: 87 http://isocial.svn.sourceforge.net/isocial/?rev=87&view=rev Author: aguidrevitch Date: 2008-03-16 13:08:31 -0700 (Sun, 16 Mar 2008) Log Message: ----------- minor fixes to marking messages + css fixes Modified Paths: -------------- app/controllers/message_controller.php public/stylesheets/Message.css Modified: app/controllers/message_controller.php =================================================================== --- app/controllers/message_controller.php 2008-03-16 18:56:29 UTC (rev 86) +++ app/controllers/message_controller.php 2008-03-16 20:08:31 UTC (rev 87) @@ -122,10 +122,12 @@ } function mark_unread () { + $this->last_box = 'inbox'; // there is no way message can be read/unread in outbox return $this->_mark_messages(0); } function mark_read () { + $this->last_box = 'inbox'; // there is no way message can be read/unread in outbox return $this->_mark_messages(1); } Modified: public/stylesheets/Message.css =================================================================== --- public/stylesheets/Message.css 2008-03-16 18:56:29 UTC (rev 86) +++ public/stylesheets/Message.css 2008-03-16 20:08:31 UTC (rev 87) @@ -223,13 +223,9 @@ } .email_closed { - width: 16px; - height: 16px; background: url('/images/email.png') no-repeat 10px; } .email_open { - width: 16px; - height: 16px; background: url('/images/email_open.png') no-repeat 10px; } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |