in reply to exists EXPR error
Try replacing the line if ( exists %new_list{$file} ) { with if ( exists $new_list{$file} ) {, and the line if ( exists %old_list{$file} ) { with if ( exists $old_list{$file} ) {.
Hope that helps.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: exists EXPR error
by smturner1 (Sexton) on Dec 15, 2014 at 05:09 UTC | |
by BrowserUk (Patriarch) on Dec 15, 2014 at 05:25 UTC | |
by smturner1 (Sexton) on Dec 15, 2014 at 05:44 UTC |