From: Jaben C. <ja...@us...> - 2007-03-14 19:20:02
|
Update of /cvsroot/yafdotnet/yafsrc/YAF.Classes/YAF.Classes.Utils In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv9033/YAF.Classes/YAF.Classes.Utils Modified Files: Context.cs StaticData.cs Log Message: fixes Index: Context.cs =================================================================== RCS file: /cvsroot/yafdotnet/yafsrc/YAF.Classes/YAF.Classes.Utils/Context.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Context.cs 31 Jan 2007 13:38:08 -0000 1.4 --- Context.cs 14 Mar 2007 19:19:07 -0000 1.5 *************** *** 648,652 **** public static class yaf_ForumInfo { ! public static string ForumRoot { get --- 648,652 ---- public static class yaf_ForumInfo { ! static public string ForumRoot { get Index: StaticData.cs =================================================================== RCS file: /cvsroot/yafdotnet/yafsrc/YAF.Classes/YAF.Classes.Utils/StaticData.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** StaticData.cs 26 Jan 2007 12:08:14 -0000 1.2 --- StaticData.cs 14 Mar 2007 19:19:07 -0000 1.3 *************** *** 141,145 **** { DataRow dr = dt.NewRow(); ! dr ["TopicText"] = ( yaf_Context.Current.Localization == null ) ? tTextArrayProp [i] : yaf_Context.Current.Localization.GetText( tTextArray [i] ); dr ["TopicValue"] = i; dt.Rows.Add( dr ); --- 141,145 ---- { DataRow dr = dt.NewRow(); ! dr ["TopicText"] = ( yaf_Context.Current.Localization.TransPage == null ) ? tTextArrayProp [i] : yaf_Context.Current.Localization.GetText( tTextArray [i] ); dr ["TopicValue"] = i; dt.Rows.Add( dr ); |