SVN commit 459978 by wstephens: Backport fix for crash while adding contacts while offline. M +4 -1 gwaddcontactpage.cpp --- branches/KDE/3.4/kdenetwork/kopete/protocols/groupwise/ui/gwaddcontactpage.cpp #459977:459978 @@ -99,7 +99,10 @@ bool GroupWiseAddContactPage::validateData() { - return ( m_searchUI->m_results->selectedItem() ); + if ( m_canadd ) + return ( m_searchUI->m_results->selectedItem() ); + else + return false; } #include "gwaddcontactpage.moc"