diff --git a/apps/esmtool/esmtool.cpp b/apps/esmtool/esmtool.cpp
index a60e9f0e2..1be326438 100644
--- a/apps/esmtool/esmtool.cpp
+++ b/apps/esmtool/esmtool.cpp
@@ -339,6 +339,8 @@ int load(Arguments& info)
             }
 
             std::string id = esm.getHNOString("NAME");
+            if (id.empty())
+                id = esm.getHNOString("INAM");
 
             if(!quiet && interested)
                 std::cout << "\nRecord: " << n.toString()
diff --git a/apps/opencs/model/world/infocollection.cpp b/apps/opencs/model/world/infocollection.cpp
index e21c3d477..96d2f7417 100644
--- a/apps/opencs/model/world/infocollection.cpp
+++ b/apps/opencs/model/world/infocollection.cpp
@@ -35,7 +35,7 @@ void CSMWorld::InfoCollection::load (ESM::ESMReader& reader, bool base, const ES
 {
     /// \todo put records into proper order
     /// \todo adjust ID
-    std::string id = reader.getHNOString ("NAME");
+    std::string id = reader.getHNOString ("INAM");
 
     if (reader.isNextSub ("DELE"))
     {
diff --git a/apps/openmw/mwworld/esmstore.cpp b/apps/openmw/mwworld/esmstore.cpp
index 7703f2d23..616ecc514 100644
--- a/apps/openmw/mwworld/esmstore.cpp
+++ b/apps/openmw/mwworld/esmstore.cpp
@@ -70,8 +70,10 @@ void ESMStore::load(ESM::ESMReader &esm, Loading::Listener* listener)
 
         if (it == mStores.end()) {
             if (n.val == ESM::REC_INFO) {
+                std::string id = esm.getHNOString("INAM");
                 if (dialogue) {
                     dialogue->mInfo.push_back(ESM::DialInfo());
+                    dialogue->mInfo.back().mId = id;
                     dialogue->mInfo.back().load(esm);
                 } else {
                     std::cerr << "error: info record without dialog" << std::endl;
diff --git a/apps/openmw/mwworld/store.hpp b/apps/openmw/mwworld/store.hpp
index 90452f661..c25197319 100644
--- a/apps/openmw/mwworld/store.hpp
+++ b/apps/openmw/mwworld/store.hpp
@@ -258,7 +258,7 @@ namespace MWWorld
                 typename std::vector<T *>::iterator sharedIter = mShared.begin();
                 typename std::vector<T *>::iterator end = sharedIter + mStatic.size();
 
-                while (sharedIter != mShared.end() && sharedIter != end) { 
+                while (sharedIter != mShared.end() && sharedIter != end) {
                     if((*sharedIter)->mId == item.mId) {
                         mShared.erase(sharedIter);
                         break;
diff --git a/components/esm/loadinfo.cpp b/components/esm/loadinfo.cpp
index be07e5128..5dc35db88 100644
--- a/components/esm/loadinfo.cpp
+++ b/components/esm/loadinfo.cpp
@@ -8,7 +8,6 @@ namespace ESM
 
 void DialInfo::load(ESMReader &esm)
 {
-    mId = esm.getHNString("INAM");
     mPrev = esm.getHNString("PNAM");
     mNext = esm.getHNString("NNAM");