[LON-CAPA-cvs] cvs: loncom /lonnet/perl lonnet.pm
albertel
lon-capa-cvs@mail.lon-capa.org
Tue, 14 Feb 2006 20:28:58 -0000
albertel Tue Feb 14 15:28:58 2006 EDT
Modified files:
/loncom/lonnet/perl lonnet.pm
Log:
- ssi requests should not change the value of the last known location
Index: loncom/lonnet/perl/lonnet.pm
diff -u loncom/lonnet/perl/lonnet.pm:1.710 loncom/lonnet/perl/lonnet.pm:1.711
--- loncom/lonnet/perl/lonnet.pm:1.710 Fri Feb 10 17:33:48 2006
+++ loncom/lonnet/perl/lonnet.pm Tue Feb 14 15:28:57 2006
@@ -1,7 +1,7 @@
# The LearningOnline Network
# TCP networking package
#
-# $Id: lonnet.pm,v 1.710 2006/02/10 22:33:48 albertel Exp $
+# $Id: lonnet.pm,v 1.711 2006/02/14 20:28:57 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1145,7 +1145,9 @@
my $ua=new LWP::UserAgent;
my $request;
-
+
+ $form{'no_update_last_known'}=1;
+
if (%form) {
$request=new HTTP::Request('POST',"http://".$ENV{'HTTP_HOST'}.$fn);
$request->content(join('&',map { &escape($_).'='.&escape($form{$_}) } keys %form));
@@ -5471,9 +5473,12 @@
if (($env{'request.course.fn'}) && (%newhash)) {
if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
&GDBM_WRCREAT(),0640)) {
- foreach (keys %newhash) {
- $hash{declutter($_)}=&encode_symb($mapname,$newhash{$_}->[1],
- $newhash{$_}->[0]);
+ foreach my $url (keys %newhash) {
+ next if ($url eq 'last_known'
+ && $env{'form.no_update_last_known'});
+ $hash{declutter($url)}=&encode_symb($mapname,
+ $newhash{$url}->[1],
+ $newhash{$url}->[0]);
}
if (untie(%hash)) {
return 'ok';