<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -223,7 +223,11 @@ module ActivePresenter
       
       def merge_errors(presented_inst, type)
         presented_inst.errors.each do |att,msg|
-          errors.add(attribute_prefix(type)+att, msg)
+          if att == 'base'
+            errors.add(type, msg)
+          else
+            errors.add(attribute_prefix(type)+att, msg)
+          end
         end
       end
       </diff>
      <filename>lib/active_presenter/base.rb</filename>
    </modified>
    <modified>
      <diff>@@ -69,6 +69,12 @@ Expectations do
     s.errors.on(:user_login)
   end
 
+  expect ['User Password can not be blank'] do
+    s = SignupPresenter.new(:user_login =&gt; 'login')
+    s.valid?
+    s.errors.full_messages
+  end
+
   expect ActiveRecord::Base.to.receive(:transaction) do
     s = SignupPresenter.new
     s.save</diff>
      <filename>test/base_test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -31,9 +31,14 @@ ActiveRecord::Schema.define(:version =&gt; 0) do
 end
 
 class User &lt; ActiveRecord::Base
-  validates_presence_of :login, :password
+  validates_presence_of :login
+  validate :presence_of_password
   attr_accessible :login, :password, :birthday
   attr_accessor   :password_confirmation
+
+  def presence_of_password
+    errors.add_to_base('Password can not be blank') if password.blank?
+  end
 end
 class Account &lt; ActiveRecord::Base; end
 class Address &lt; ActiveRecord::Base; end</diff>
      <filename>test/test_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>874b51a8448009953b45ee6eeb2fff7283a21068</id>
    </parent>
  </parents>
  <author>
    <name>eugenebolshakov</name>
    <email>eugene.bolshakov@gmail.com</email>
  </author>
  <url>http://github.com/steveluscher/active_presenter/commit/0c99ee64f9ea1f994d50916a46159b8058059f1a</url>
  <id>0c99ee64f9ea1f994d50916a46159b8058059f1a</id>
  <committed-date>2009-05-18T07:53:09-07:00</committed-date>
  <authored-date>2009-04-27T00:02:44-07:00</authored-date>
  <message>Errors added to &quot;base&quot; should not have &quot;base&quot; in the message</message>
  <tree>908ac961c93ecb656b8397928ea15045155a6a9d</tree>
  <committer>
    <name>Daniel Haran</name>
    <email>chebuctonian@mgmail.com</email>
  </committer>
</commit>
