diff options
-rwxr-xr-x | src/feedentry | 4 | ||||
-rwxr-xr-x | src/html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/feedentry b/src/feedentry index 086d3fe..2321614 100755 --- a/src/feedentry +++ b/src/feedentry @@ -12,8 +12,8 @@ eval "$(assert-arg -- "$FILENAME" 'FILENAME.htmlbody')" update_xml= -if [ -n "${updated_at:-}" ]; then - update_iso="$(date -ud "$updated_at" -Is)" +if [ -n "${updatedat:-}" ]; then + update_iso="$(date -ud "$updatedat" -Is)" update_xml=" <updated> $update_iso </updated>" @@ -57,7 +57,7 @@ EOF } h1() { - if [ "${custom_body:-}" = true ]; then + if [ "${custombody:-}" = true ]; then return fi @@ -69,7 +69,7 @@ EOF } comments() { - if [ "${custom_body:-}" = true ]; then + if [ "${custombody:-}" = true ]; then return fi |