Date: Tue, 5 Dec 2006 02:46:25 GMT From: soc-andrew <soc-andrew@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 111099 for review Message-ID: <200612050246.kB52kP3Z011593@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=111099 Change 111099 by soc-andrew@soc-andrew_serv on 2006/12/05 02:45:39 Fix a bug in the fetch library where the step table was not defined Affected files ... .. //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/lib/Fetch.lua#2 edit Differences ... ==== //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/lib/Fetch.lua#2 (text+ko) ==== @@ -277,7 +277,7 @@ return tab end -Fetch.find_method = function(self) +Fetch.find_method = function(self, prev_name) local actions = {} local process = function(key, value) @@ -289,7 +289,7 @@ -- Create the actions table for the UI table.foreach(dist_methods, process) table.insert(actions, { id = "cancel", accelerator = "ESC", - name = _("Return to %s", step:get_prev_name()) } ) + name = _("Return to %s", prev_name) } ) local responce = App.ui:present{ id = "select_dist_location",
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200612050246.kB52kP3Z011593>