[Initialize page-content-hash when :content is supplied clinton@unknownlamer.org**20081212222623] hunk ./src/web-common.lisp 31 - (hash :reader page-content-hash) + (hash :reader page-content-hash :initform nil) hunk ./src/web-common.lisp 34 +(defmethod initialize-instance :after ((page bee-page) + &key (content content-supplied-p) + &allow-other-keys) + (when content-supplied-p + (setf (page-content page) content))) +