Index: trunk/src/tmcsim/client/CADlogDisplay.java
===================================================================
--- trunk/src/tmcsim/client/CADlogDisplay.java	(revision 416)
+++ trunk/src/tmcsim/client/CADlogDisplay.java	(revision 425)
@@ -69,8 +69,5 @@
      */
     private CADClientSocket theClientSocket;
-    /**
-     * Instance of the ClockView.
-     */
-    private ClockView theView;
+
     /**
      * Properties object for the CADClient class.
@@ -132,11 +129,11 @@
                             sb.append(notesTable.getValueAt(row,1) + " "); // time
                             String initials = (String) notesTable.getValueAt(row,2); // initials
-                            // If there are no user intials, it's a scripted item
-                            if (initials.length() == 0)
+                            // If there are user intials, include this item.
+                            // Zero length initials mean it's a scripted item
+                            if (initials.length() > 0)
                             {
-                                initials = "Script";
+                                sb.append(initials + " ");
+                                sb.append(notesTable.getValueAt(row,4) + "\n"); // notes
                             }
-                            sb.append(initials + " ");
-                            sb.append(notesTable.getValueAt(row,4) + "\n"); // notes
                         }
                     }
