Author: jsuchome Date: Tue Jun 3 15:57:47 2008 New Revision: 48014 URL: http://svn.opensuse.org/viewcvs/yast?rev=48014&view=rev Log: - check if map key exists before removing it (bnc#396666) - 2.16.19 Modified: branches/SuSE-Linux-11_0-Branch/product-creator/VERSION branches/SuSE-Linux-11_0-Branch/product-creator/package/yast2-product-creator.changes branches/SuSE-Linux-11_0-Branch/product-creator/src/dialogs.ycp Modified: branches/SuSE-Linux-11_0-Branch/product-creator/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-11_0-Branch/product-creator/VERSION?rev=48014&r1=48013&r2=48014&view=diff ============================================================================== --- branches/SuSE-Linux-11_0-Branch/product-creator/VERSION (original) +++ branches/SuSE-Linux-11_0-Branch/product-creator/VERSION Tue Jun 3 15:57:47 2008 @@ -1 +1 @@ -2.16.18 +2.16.19 Modified: branches/SuSE-Linux-11_0-Branch/product-creator/package/yast2-product-creator.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-11_0-Branch/product-creator/package/yast2-product-creator.changes?rev=48014&r1=48013&r2=48014&view=diff ============================================================================== --- branches/SuSE-Linux-11_0-Branch/product-creator/package/yast2-product-creator.changes (original) +++ branches/SuSE-Linux-11_0-Branch/product-creator/package/yast2-product-creator.changes Tue Jun 3 15:57:47 2008 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue Jun 3 15:49:54 CEST 2008 - jsuchome@suse.cz + +- check if map key exists before removing it (bnc#396666) +- 2.16.19 + +------------------------------------------------------------------- Thu May 22 15:30:47 CEST 2008 - jsuchome@suse.cz - added support for profiles (bnc#343212) Modified: branches/SuSE-Linux-11_0-Branch/product-creator/src/dialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-11_0-Branch/product-creator/src/dialogs.ycp?rev=48014&r1=48013&r2=48014&view=diff ============================================================================== --- branches/SuSE-Linux-11_0-Branch/product-creator/src/dialogs.ycp (original) +++ branches/SuSE-Linux-11_0-Branch/product-creator/src/dialogs.ycp Tue Jun 3 15:57:47 2008 @@ -639,7 +639,8 @@ y2milestone("Only one repository selected, skipping base repository selection"); // remove the option if it exists - ProductCreator::Config = remove(ProductCreator::Config, "base_repo"); + if (haskey (ProductCreator::Config, "base_repo")) + ProductCreator::Config = remove(ProductCreator::Config, "base_repo"); return going_back ? `back : `next; } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org