forked from e16/e16
1
0
Fork 0

Fix unpacking theme from .etheme file. Has been broken since 1.0.2.

SVN revision: 51518
This commit is contained in:
Kim Woelders 2010-08-22 14:30:41 +00:00
parent 9e11dff4e4
commit a0e1b55b37
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/*
* Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors
* Copyright (C) 2004-2009 Kim Woelders
* Copyright (C) 2004-2010 Kim Woelders
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
@ -334,7 +334,7 @@ ThemePathFind(void)
* Mode.theme.path may be assigned on the command line.
*/
name = (Mode.theme.path) ? Mode.theme.path : Conf.theme.name;
s = (name) ? strchr(name, '.') : NULL;
s = (name) ? strchr(name, '=') : NULL;
if (s)
{
*s = 0;