[pLog-svn] Memory Usage pLog 1.0.1 / 1.1

Benjamin Krause ork at orkland.de
Sat May 28 13:17:31 GMT 2005


Hi everyone,

following the 'we use to much memory' topic for a while now, i decided
to take a close look where the memory actually is needed. playing with
the wonderful xdebug options, this is a result we might want to discuss.

this values were calculated using apache2/php4.3.11/xdebug 2.00beta3,
all with a lot of debugging options turned on. so the production values
might be lower, but i guess you get the point anyway :)

1. Cached View / Final plog-1.0.1

Total memory used on the defaultBlogView(): 16.316.072 bytes

This following list shows:
- the cpu time used to execute that call
- the total memory used by the time the function/method was called
- the memory delta (total memory usage before and after the call)

This list containing the top10 entries, sorted by the memory delta, i've
attached the full list to the mail.

  0.0554    4489744 +1402048  -> include_once(adodb.inc.php)
  0.1676   12839608  +621520  -> require_once(TimeZone.class.php)
  0.0924    8057648  +600704  -> include_once(class.phpmailer.php)
  0.1049    9178728  +597840  -> include_once(Smarty.class.php)
  0.0693    5886160  +543216  -> include_once(articles.class.php)
  0.2730   15657064  +486864  -> require_once(Snoopy.class.inc)
  0.1710   13296136  +456528  -> getenv() in TimeZone.class.php:3635
  0.0603    4942872  +451440  -> include_once(adodb-time.inc.php)
  0.2943   16177696  +443184  -> include(locale_de_DE.php)
  0.0648    5342944  +421688  -> include_once(IXR_Library.lib.php)


2. Cached View / Current plog-1.1-ben

Total memory used on the defaultBlogView(): 6.883.056 bytes

  0.1097    5292440  +594912  -> include_once(Smarty.class.php)
  0.0754    3768216  +550368  -> include_once(articles.class.php)
  0.1750    6856008  +295136  -> require_once(phpSniff.core.php)
  0.1671    6487272  +260880  -> include_once(kses.class.php)
  0.0663    2974272  +245248  -> include_once(users.class.php)
  0.0966    4530376  +244496  -> include_once(articlecomments.class.php)
  0.0636    2674104  +234776  -> include_once(blogs.class.php)
  0.0368    1705744  +191568  -> require_once(Lite.php)
  0.1610    5887328  +182088  -> include_once(rawrequestgenerator.class.php)
  0.1648    6226392  +172624  -> include_once(textfilter.class.php)

3. Uncached View

This results above seems like a great step in memory savings, but it
isn't. this is just accomplished by not loading classes like adodb and
so on, because both views are cached anyway, so we do not need to load
adodb.
if we have an uncached DefaultBlogView(), the result is much closer:

Memory used plog-1.0.1:   18.072.520 bytes
Memory used plog-1.1-ben: 14.471.032 bytes

Both top-memory-usages are almost the same, looking like that:

  0.0506    4489744 +1402048  -> include_once(adodb.inc.php)
  0.5089   17797416 +1255384  -> require_once(Smarty_Compiler.class.php)
  0.1736   12839608  +621520  -> require_once(TimeZone.class.php)

  0.0879    8057648  +600704  -> include_once(class.phpmailer.php)
  0.1056    9178728  +597840  -> include_once(Smarty.class.php)
  0.0638    5886160  +543216  -> include_once(articles.class.php)
  0.2519   15657064  +486864  -> require_once(Snoopy.class)
  0.1844   13296136  +456528  -> getenv() in TimeZone.class.php:3635
  0.0550    4942872  +451440  -> include_once(adodb-time.inc.php)
  0.2670   16177696  +443184  -> include(locale_de_DE.php)

4. So what to do

The main problem is, we're loading to much code. :-) One might wonder
how much memory is used just by loading all includes on an uncached
view. If we assume, xdebug produces correct results, this is the sum of
all include/require calls in an uncached view on plog-.1.0. (this sum is
most likely not 100% correct, but will be quite close): 15.934.568 bytes

so improving our code will just produce a marginally improvement in the
 the memory usage by pLog. As long as we have a full features
Smarty/AdoDB app, we have to accept, that we need at least 16MB and
won't stay much below that.

Nevertheless, we should think about what to do in the code, to at least
reduce the memory on the parts we can change (like the already discussed
usage of pass-by-reference, etc.)

You might have noticed the getenv() call on both lists, this is the only
'non-include'-function that uses a lot of memory (again, might depend on
the system you're running). we should take a closer look there too :)

Ben
-------------- next part --------------
    0.0554    4489744 +1402048                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:11
    0.1676   12839608  +621520             -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:26
    0.0924    8057648  +600704                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/mail/phpmailer/class.phpmailer.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/mail/emailservice.class.php:17
    0.1049    9178728  +597840                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:19
    0.0693    5886160  +543216                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:7
    0.2730   15657064  +486864                     -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/extlib/Snoopy.class.inc) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:37
    0.1710   13296136  +456528               -> getenv() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:3635
    0.0603    4942872  +451440                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb-time.inc.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2320
    0.2943   16177696  +443184                     -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/locale/locale_de_DE.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:112
    0.0648    5342944  +421688                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/xmlrpc/IXR_Library.lib.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/xmlrpcclient.class.php:4
    0.1554   12218088  +384112           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/timestamp.class.php:6
    0.1900   14073432  +383624                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3488
    0.1425   11253256  +294984                         -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.class.php:22
    0.1825   13583520  +273712             -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/Span.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:28
    0.0842    7277400  +263680                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:5
    0.0352    2668456  +261920                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/kses.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:12
    0.0742    6404416  +248968                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecomments.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/article.class.php:9
    0.0947    8303088  +245440                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/users.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlenotifications.class.php:7
    0.2662   15092952  +223072                     -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_parse.inc) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:32
    0.0370    2874672  +206216                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:7
    0.0714    6090984  +204824                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/article.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:4
    0.3406   16120536  +190056               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/rawrequestgenerator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:88
    0.1508   11831496  +173952                     -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/tree/Node.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/tree/Tree.php:26
    0.2597   14693488  +169224                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/htmlcalendar.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/plogcalendar.class.php:3
    0.0270    1896168  +167960             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:5
    0.3423   16285872  +165336                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/rawrequestgenerator.class.php:3
    0.0773    6655080  +165312                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/trackbacks.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/article.class.php:12
    0.0329    2406536  +163184                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:6
    0.1468   11519136  +162664                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/tree/Tree.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/menu/menu.class.php:3
    0.0303    2186944  +147312                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/admincontroller.class.php:4
    0.1303   10492112  +143992                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantokens.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:5
    0.1484   11657472  +138336                     -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/parser/Parser.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/tree/Tree.php:25
    0.0219    1498720  +137896         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresourcestorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:10
    0.2638   14869688  +135984                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssparser.class.php:4
    0.0173    1189208  +133440       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userinfo.class.php:4
    0.0961    8435952  +132864                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userpermissions.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/users.class.php:5
    0.1140    9757328  +131704                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategories.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinks.class.php:5
    0.1076    9363544  +131424                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templatesetstorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:11
    0.2557   14369440  +118120               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/defaultview.class.php:3
    0.1852   13687656  +113448           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/config.class.php:101
    0.0285    2020736  +112792             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:7
    0.1231    9983248  +110432                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginbase.class.php:20
    0.2542   14224792  +109384           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:117
    0.1316   10596200  +104088                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/client.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:10
    0.0054     410960  +103024               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:5
    0.0791    6789224  +101704                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldsvalues.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/article.class.php:13
    0.1268   10180232   +97632                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:17
    0.0800    6884496   +95272                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfields.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldsvalues.class.php:5
    0.0389    3048304   +94920                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:10
    0.0982    8555240   +94792                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlenotifications.class.php:9
    0.0243    1643928   +89776         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/timestamp.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:11
    0.1338   10723720   +88088                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/referers.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:10
    0.1284   10348440   +85200                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantoken.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/bayesian/bayesiantokenizer.class.php:3
    0.0254    1728208   +84280           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/timestamp.class.php:5
    0.1276   10263240   +83008                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/bayesian/bayesiantokenizer.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:4
    0.1117    9547936   +81936                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinks.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:8
    0.0854    7354472   +76728                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlenotifications.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:6
    0.1375   10933464   +69024                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/admin/admindefaultview.class.php:8
    0.2573   14498600   +68240                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpcache.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:5
    0.0750    6471624   +67208                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/usercomment.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecomments.class.php:4
    0.0150     980984   +66216       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:7
    0.1089    9429712   +66168                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templatesets.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templatesetstorage.class.php:7
    0.0131     907856   +65992       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:4
    0.0722    6155448   +64464                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategory.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/article.class.php:8
    0.0016     107344   +64112       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/blogcontroller.class.php:3
    0.1167    9889368   +63680               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:9
    0.0124     841864   +63040     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:13
    0.1353   10808016   +61392                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/admin/adminaction.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginbase.class.php:21
    0.2564   14430360   +60920                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:3
    0.2673   15170656   +56912                     -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_cache.inc) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:33
    0.1450   11356472   +56656                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/menu/menu.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginbase.class.php:25
    0.0060     465272   +54312                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/misc/glob.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:13
    0.0158    1035048   +54064     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userinfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:14
    0.1061    9232120   +53088                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:10
    0.0869    7456944   +51288                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/mail/emailservice.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlenotifications.class.php:6
    0.3305   15879480   +49640               -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1017
    0.0104     723816   +49320           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/forms/formvalidator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:29
    0.0073     549192   +49248           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/debug.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:28
    0.0081     598288   +49024         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:19
    0.0376    2922344   +47672                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:3
    0.0190    1297840   +45240             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/stringutils.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/data/galleryresourcebasemetadatareader.class.php:4
    0.0394    3093184   +44880                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:5
    0.0040     287640   +44040               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/logger/loggedmessage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/logger/logger.class.php:4
    0.0030     206208   +42720           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:27
    0.1122    9589120   +41184                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylink.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinks.class.php:4
    0.1149    9798128   +40504                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesianfilterinfos.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:10
    0.0227    1556984   +39008           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/fileuploads.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresourcestorage.class.php:6
    0.0180    1227920   +38712         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/mimetype.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:4
    0.0818    7004464   +37816                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfielddatevalue.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldvaluefactory.class.php:5
    0.0034     243600   +37392             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/logger/logger.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:3
    0.0804    6921368   +36872                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfield.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfields.class.php:4
    0.1127    9625624   +36504                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategory.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylink.class.php:4
    0.0862    7405584   +35352                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/mail/emailmessage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlenotifications.class.php:5
    0.1238   10016856   +33608                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:8
    0.0782    6687520   +32440                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/trackback.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/trackbacks.class.php:4
    0.0380    2953384   +31040                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:34
    0.0307    2217184   +30240                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogsettings.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:4
    0.0004      29400   +29400   -> {main}() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:0
    0.2750   15718240   +29368             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/errorview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:7
    0.0065     493000   +28984             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/layout/patternlayout.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:5
    0.2741   15686400   +28888                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssitem.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssparser.class.php:9
    0.0023     163400   +28872           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/exception.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:25
    0.1326   10635632   +28288                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/linkparser.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/subdomains.class.php:4
    0.2579   14524264   +27384                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/plogcalendar.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:5
    0.0020     134528   +27184         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:18
    0.2546   14251320   +26528             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/defaultview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:4
    0.0116     780080   +26488         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:21
    0.1093    9455776   +26064                               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templateset.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templatesets.class.php:4
    0.0312    2243248   +25968                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:5
    0.0986    8580888   +25648                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:4
    0.0813    6966648   +25376                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldvalue.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldvaluefactory.class.php:4
    0.1381   10958272   +24808                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:20
    0.1343   10748456   +24736                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/referer.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/referers.class.php:5
    0.1362   10845440   +24688                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachecontrol.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/admin/adminaction.class.php:9
    0.1108    9466000   +23144                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/LogUtil.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:18
    0.2621   14733704   +22240                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssparser.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:14
    0.0810    6941272   +21872                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldvaluefactory.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldsvalues.class.php:6
    0.3320   15923016   +21816                   -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1607
    0.0087     629808   +21768           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:26
    0.0044     307800   +21384             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:4
    0.1434   11300736   +21088                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/regexprule.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/uintrule.class.php:3
    0.1256   10082600   +20880                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/commentfilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:16
    0.0160    1055768   +20720       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/dbobject.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userinfo.class.php:3
    0.2666   15113744   +20696                       -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_utils.inc) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_parse.inc:6
    0.0090     649512   +19704           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:27
    0.0222    1517976   +19256           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/fileupload.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresourcestorage.class.php:4
    0.1367   10864440   +19000                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/admin/admindefaultview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/admin/adminaction.class.php:10
    0.0290    2039632   +18896               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/admincontroller.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:8
    0.0758    6490976   +18680                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/status/genericstatuslist.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlestatus.class.php:3
    0.0820    7022728   +18264                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldcheckboxvalue.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldvaluefactory.class.php:6
    0.2602   14711464   +17976                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/archivelink.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:7
    0.3312   15896920   +17584                   -> fclose() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1768
    0.0196    1328136   +17400         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/data/galleryresourcevideometadatareader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:7
    0.0094     666680   +17168             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/config.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:5
    0.0199    1345160   +17024         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/data/galleryresourcezipmetadatareader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:8
    0.0185    1252600   +16072           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/data/galleryresourcebasemetadatareader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/data/galleryresourceimagemetadatareader.class.php:3
    0.0856    7370232   +15760                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlenotification.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlenotifications.class.php:4
    0.1152    9813832   +15704                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesianfilterinfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesianfilterinfos.class.php:4
    0.1511   11846976   +15480                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/menu/menuentry.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/menu/menu.class.php:4
    0.0202    1360608   +15448         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:9
    0.0963    8450792   +14840                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userpermission.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userpermissions.class.php:4
    0.0108     741992   +14680               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/validator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/emptyvalidator.class.php:3
    0.1250   10061720   +14448                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelineresult.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinefilter.class.php:5
    0.1428   11267472   +14216                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/integervalidator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:21
    0.0008      43232   +13728     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/blogcontroller.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:12
    0.1779   13309808   +13240             -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/Calc.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:27
    0.2743   15699632   +13232                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssenclosure.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssitem.class.php:4
    0.3180   15829080   +13112                               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/appender/fileappender.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:141
    0.0193    1310736   +12896         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/data/galleryresourcesoundmetadatareader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:6
    0.1246   10047272   +12872                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinefilter.class.php:4
    0.3329   15935544   +12656                     -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1669
    0.1357   10820480   +12464                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/misc/version.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/admin/adminaction.class.php:7
    0.1322   10607344   +12376                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/subdomains.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:9
    0.1431   11279648   +12176                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/uintrule.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/integervalidator.class.php:4
    0.1156    9825568   +11736                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogstatus.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:15
    0.0110     753592   +11600                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/validation.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/validator.class.php:46
    0.0274    1907944   +11568             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/pluginlocale.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:6
    0.1243   10034400   +11368                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinefilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/nullpipelinefilter.class.php:3
    0.0967    8460328    +9904                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userstatus.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/users.class.php:7
    0.0084     608040    +9752           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/actioninfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:25
    0.1902   14083256    +9728                     -> class_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3491
    0.0098     674496    +9696           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/observable.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:28
    0.3312   15898200    +9648                 -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:54
    0.0613    4921256    +9344                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/xmlrpcclient.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:6
    0.1436   11309824    +9088                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/rule.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/regexprule.class.php:3
    0.0182    1236528    +8608         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/data/galleryresourceimagemetadatareader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:5
    0.3167   15816608    +8512                                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/appender/appender.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/appender/nullappender.class.php:3
    0.1903   14090712    +7464                   -> adodb_mysql->adodb_mysql() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3590
    0.1100    9442760    +7224                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecommentstatus.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:8
    0.0067     499944    +6944               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/layout/layout.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/layout/patternlayout.class.php:3
    0.1831   13580088    +6936         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresource.class.php:14
    0.0133     914768    +6912       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessioninfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:5
    0.2480   14116456    +6416         -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controllermap.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/blogcontroller.class.php:69
    0.1241   10023032    +6176                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/nullpipelinefilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:15
    0.3210   15842544    +6144                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:303
    0.3448   16300392    +5504               -> phpsniff->phpsniff() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:313
    0.3206   15834416    +5464                 -> templateservice->_configuretemplatesettings() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:181
    0.2843   15731920    +4744                   -> bloginfo->bloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:85
    0.3142   15803584    +4688                 -> cachedtemplate->cachedtemplate() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:173
    0.2852   15737976    +4304                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:240
    0.0755    6472296    +4104                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlestatus.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/article.class.php:10
    0.3426   16289896    +3936               -> rawrequestgenerator->rawrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:89
    0.3147   15807696    +3672                               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/logging.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:26
    0.0105     727312    +3496             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/emptyvalidator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/forms/formvalidator.class.php:10
    0.1859   13690976    +3440                   -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3164   15808096    +3280                               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/appender/nullappender.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:141
    0.2775   15721680    +2984                     -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3273   15833384    +2920                           -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3263   15833024    +2920                         -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3248   15832752    +2920                         -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3239   15832312    +2848                         -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.2275   14094720    +2848                   -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3290   15834056    +2784                         -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3282   15833680    +2784                       -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3230   15831832    +2784                         -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3221   15831832    +2784                       -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3108   15796592    +2784                       -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3099   15796592    +2784                     -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3091   15796592    +2784                         -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3082   15796504    +2784                       -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3073   15796504    +2784                       -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3056   15796328    +2784                       -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3047   15795976    +2784                       -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3039   15795976    +2784                     -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.3028   15795384    +2784                       -> include(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/config/config.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:58
    0.2814   15722496    +2472                       -> adorecordset_mysql->adorecordset_mysql() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:870
    0.2991   15791680    +2344           -> pipeline->pipeline() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:69
    0.3454   16305784    +2208                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.2464   14110464    +1992             -> eval('$this->_scheme = $parts["scheme"];') /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:68
    0.2754   15712928    +1960       -> defaultaction->defaultaction() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:299
    0.3124   15793456    +1928         -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:65
    0.2840   15726720    +1896                 -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:66
    0.2837   15724888    +1864                           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.3450   16302928    +1848                 -> phpsniff->init() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.class.php:201
    0.3385   15929832    +1656             -> requestgenerator::getrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:415
    0.3208   15836232    +1656                   -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:293
    0.2286   14093216    +1512                   -> adorecordset_mysql->adorecordset_mysql() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:870
    0.3384   15927696    +1496           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:217
    0.3139   15798712    +1440                   -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:205
    0.2876   15733896    +1424           -> pluginmanager->setuserinfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:61
    0.2842   15727176    +1424                   -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:81
    0.1905   14092136    +1424               -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:36
    0.3623   16317112    +1336                 -> _internalerrorhandler() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/exception.class.php:1191
    0.3433   16292320    +1336             -> requestgenerator::getrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:415
    0.3137   15797008    +1336               -> templateservice->cachedtemplate() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:70
    0.3134   15795584    +1336               -> bloginfo->getsettings() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:66
    0.3313   15899528    +1328                 -> array_keys() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:72
    0.3488   16310768    +1240                     -> preg_match_all() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:264
    0.2486   14113416    +1240       -> pluginmanager->pluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:123
    0.3468   16307952    +1120                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:393
    0.2471   14110760    +1088             -> eval('$this->_scheme = $parts["scheme"];') /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:68
    0.3377   15926528    +1032             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/version.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/misc/version.class.php:30
    0.2988   15790448    +1024               -> _internalerrorhandler() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/exception.class.php:87
    0.2736   15657512     +984                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rsschannel.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssparser.class.php:8
    0.1855   13686768     +976               -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:32
    0.2332   14098880     +936               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2757   15715368     +904             -> formvalidator->formvalidator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:89
    0.1289   10349352     +784                         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/bayesian/tokenizer.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/bayesian/bayesiantokenizer.class.php:4
    0.2844   15733112     +712                       -> textfilter->textfilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:289
    0.2482   14112792     +680         -> resourceclassloader::getloader() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:169
    0.3330   15935832     +656                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:34
    0.1836   13574048     +648           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/config.class.php:92
    0.0557    4490584     +640                           -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:64
    0.2878   15734512     +616               -> locale->locale() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:71
    0.3480   16309528     +608                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:528
    0.3313   15900128     +600                 -> cachedtemplate->_fetch_resource_info() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:74
    0.3034   15792928     +592           -> articles->articles() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:87
    0.2845   15733880     +576                         -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:41
    0.3595   16315000     +560                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:505
    0.3590   16314376     +560                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:505
    0.3315   15901296     +552                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3454   16306328     +544                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.2758   15715904     +536           -> httpvars::getsession() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:46
    0.0562    4491408     +528                             -> microtime() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:168
    0.2760   15716648     +520           -> defaultaction->_getbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:51
    0.3434   16292904     +504               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:69
    0.3374   15925408     +504           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:214
    0.3365   15924816     +504       -> defaultview->render() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:325
    0.3296   15832072     +504             -> locale->getcharset() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:48
    0.2843   15732400     +480                     -> bloginfo->setblog() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:50
    0.2523   14114840     +472       -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:280
    0.2333   14099360     +472                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2771   15718176     +464                 -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.2755   15714144     +464             -> request->request() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:78
    0.2329   14097552     +464                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.3428   16290736     +456                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:69
    0.3438   16294136     +408                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:69
    0.3181   15828392     +408                                 -> appender::appender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/appender/fileappender.class.php:39
    0.2321   14096680     +408                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2294   14094528     +400                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2293   14094040     +400                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.3541   16312824     +392                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.2514   14114008     +392         -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:72
    0.3190   15829128     +384                               -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:135
    0.3176   15815968     +384                               -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:135
    0.3155   15804816     +384                               -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:135
    0.2994   15792352     +376                 -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:111
    0.2331   14097656     +368               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.1862   13689720     +368                   -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3522
    0.3471   16308488     +360                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:404
    0.3453   16303576     +360                   -> phpsniff->_get_browser_info() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:93
    0.3380   15926384     +360                 -> date_timezone->date_timezone() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:143
    0.2867   15733224     +360                   -> date_timezone->date_timezone() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:143
    0.2421   14108000     +360                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2331   14098016     +360                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.1438   11308984     +360                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/uintrule.class.php:5
    0.3623   16317464     +352                   -> exception->exception() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/exception.class.php:73
    0.3436   16293344     +352               -> rawrequestgenerator->rawrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:89
    0.2988   15790800     +352                 -> exception->exception() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/exception.class.php:73
    0.2413   14107152     +352                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.1911   14092840     +352                   -> mysql_pconnect() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:362
    0.1910   14092488     +352                 -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:459
    0.3497   16310504     +344                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.2385   14104384     +336               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2290   14093640     +336                       -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.3498   16310832     +328                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3497   16310160     +328                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:143
    0.2815   15722824     +328                         -> adorecordset_mysql->adorecordset() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:545
    0.2517   14114056     +328       -> file::isdir() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:161
    0.2411   14106960     +328                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2328   14097256     +328                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.1712   13296568     +328                 -> date_timezone::isvalidid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:157
    0.3387   15930392     +320               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:69
    0.2441   14109944     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2439   14109792     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2438   14109632     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2430   14108848     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2424   14108328     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2423   14108160     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2396   14105600     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2393   14105304     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2383   14103904     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2382   14103744     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2368   14102520     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2358   14101672     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2357   14101520     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2349   14100744     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2342   14100120     +320                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.3543   16313360     +312                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.2519   14114192     +312       -> request->request() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:262
    0.2409   14106704     +312                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2402   14106104     +312                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2400   14105960     +312                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2384   14104048     +312                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2351   14101008     +312                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.3315   15900656     +304                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1636
    0.2347   14100600     +304                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2776   15720168     +296                       -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.2448   14110416     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2445   14110288     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2437   14109472     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2432   14109112     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2431   14108984     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2425   14108456     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2420   14107800     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2418   14107664     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2416   14107416     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2395   14105448     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2392   14105152     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2390   14105016     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2386   14104680     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2380   14103576     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2379   14103424     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2377   14103288     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2376   14103152     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2371   14102768     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2369   14102640     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2367   14102368     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2365   14102232     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2364   14102112     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2361   14101896     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2355   14101360     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2354   14101240     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2350   14100864     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2339   14099632     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2337   14099504     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2336   14099384     +296                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.1860   13689352     +296                     -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.1856   13687360     +296                   -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.1855   13687064     +296                 -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.1855   13685792     +296             -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:49
    0.1142    9757624     +296                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategories.class.php:7
    0.0844    7277696     +296                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:10
    0.2993   15792168     +288                 -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:111
    0.2770   15717552     +288             -> blogs->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:184
    0.2453   14110680     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2450   14110656     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2427   14108576     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2414   14107280     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2407   14106560     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2406   14106432     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2403   14106216     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2399   14105824     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2344   14100352     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2343   14100232     +288                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2346   14100472     +280                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.3348   15935472     +272                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3338   15935472     +272                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3326   15922888     +272                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.2449   14110528     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2443   14110152     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2442   14110048     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2435   14109328     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2434   14109216     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2428   14108696     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2417   14107512     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2397   14105704     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2389   14104880     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2388   14104776     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2375   14103000     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2373   14102872     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2362   14101992     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2360   14101776     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2353   14101112     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2327   14097096     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2325   14096984     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2324   14096880     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2322   14096784     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2319   14096368     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2316   14096160     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2313   14095832     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2312   14095728     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2311   14095624     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2309   14095520     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2308   14095416     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2307   14095304     +272                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.1358   10820752     +272                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/misc/version.class.php:6
    0.3620   16315592     +264                 -> error_reporting() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1137
    0.3617   16315328     +264             -> defaultview->getsmartyviewid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:190
    0.3307   15879272     +264                   -> is_dir() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1786
    0.2446   14110288     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2410   14106800     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2404   14106312     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2340   14099976     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2335   14099264     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2318   14096264     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2315   14095928     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2305   14095208     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2304   14095056     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2303   14094968     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2301   14094880     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2300   14094792     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2299   14094704     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2297   14094704     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2296   14094616     +264                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.3623   16317720     +256                     -> exception->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/exception.class.php:24
    0.2755   15713680     +256             -> defaultaction->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:76
    0.1094    9456032     +256                                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templateset.class.php:6
    0.3466   16306832     +248                     -> preg_match_all() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:391
    0.2755   15713424     +248           -> defaultaction->action() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:42
    0.2754   15713176     +248         -> defaultaction->blogaction() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:29
    0.2476   14109976     +248       -> httpvars::getsession() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:46
    0.3543   16313600     +240                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3505   16311928     +240                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3505   16311688     +240                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3480   16308920     +240                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3386   15930072     +240               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:68
    0.3385   15928176     +240           -> bloginfo->getblogrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:218
    0.3384   15927936     +240             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3379   15925936     +240           -> timestamp->timestamp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:216
    0.3186   15828504     +240                                 -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:112
    0.2469   14109672     +240         -> url->url() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:86
    0.2462   14108472     +240         -> url->url() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:69
    0.3449   16300624     +232                 -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.class.php:180
    0.3314   15900352     +224                   -> cachedtemplate->_parse_resource_name() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1558
    0.3204   15828864     +224                 -> cachedtemplate->settemplatedir() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:175
    0.2759   15716128     +224           -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:49
    0.2525   14115112     +224       -> blogcontroller->loadactionclass() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:296
    0.3443   16294600     +216           -> rssparser->rssparser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:221
    0.3547   16313808     +208                     -> phpsniff->_set_feature() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:497
    0.3540   16312432     +208                     -> phpsniff->_set_feature() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:497
    0.3501   16311104     +208                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:483
    0.3444   16294808     +208             -> configdbstorage->gettempfolder() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssparser.class.php:56
    0.3321   15922600     +208                     -> in_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:29
    0.2848   15733992     +200                           -> preg_replace() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:66
    0.2993   15791960     +192                 -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:111
    0.2332   14097944     +192               -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:88
    0.3451   16303192     +184                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3352   15935464     +184                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:35
    0.3343   15935464     +184                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:35
    0.3333   15935464     +184                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:35
    0.3322   15922784     +184                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:37
    0.3140   15798896     +184                   -> file::isdir() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:209
    0.0095     666864     +184               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/config.class.php:31
    0.3372   15925080     +176                 -> smarty_core_read_cache_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1018
    0.3368   15925080     +176               -> smarty_core_read_cache_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1018
    0.3349   15935736     +176                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:34
    0.3340   15935736     +176                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:34
    0.3311   15879336     +176                   -> flock() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1742
    0.3288   15831272     +176                       -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3280   15830896     +176                     -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3270   15830464     +176                         -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3254   15830104     +176                       -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3246   15829832     +176                       -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3237   15829464     +176                       -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3228   15829048     +176                       -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3219   15829048     +176                     -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3213   15829768     +176               -> defaultview->generatecacheid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:75
    0.3144   15804024     +176                               -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:25
    0.3142   15803760     +176                   -> cachedtemplate->template() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:30
    0.3130   15794072     +176                 -> httpvars::getrequest() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:87
    0.3126   15793808     +176               -> defaultview->view() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:48
    0.3106   15793808     +176                     -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3097   15793808     +176                   -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3089   15793808     +176                       -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3080   15793720     +176                     -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3070   15793720     +176                     -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3054   15793544     +176                     -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3045   15793192     +176                     -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3037   15793192     +176                   -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3025   15792600     +176                     -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3009   15793056     +176             -> pipelinerequest->pipelinerequest() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:152
    0.3007   15792880     +176               -> pipelinerequest->gethttprequest() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/commentfilter.class.php:39
    0.3002   15792880     +176             -> pipelinerequest->pipelinerequest() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:152
    0.3002   15792704     +176             -> pipelineresult->isvalid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:159
    0.2997   15792352     +176             -> pipelinerequest->pipelinerequest() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:152
    0.2989   15790976     +176                   -> exception->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/exception.class.php:24
    0.2773   15718672     +176                   -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.2753   15710968     +176         -> actioninfo->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/actioninfo.class.php:32
    0.2486   14113592     +176         -> pluginmanager->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:64
    0.2482   14112968     +176           -> resourceclassloader->resourceclassloader() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:57
    0.2481   14111944     +176         -> blogcontroller->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:153
    0.2454   14110592     +176               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2272   14091872     +176                 -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.1856   13687536     +176                 -> configfilestorage->reload() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:46
    0.3449   16300896     +168                 -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.class.php:200
    0.3210   15842712     +168                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2844   15733280     +168                         -> textfilter->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:36
    0.2481   14112112     +168         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:156
    0.2320   14096272     +168               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.3449   16301056     +160                   -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3436   16293664     +160                   -> rawrequestgenerator->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:63
    0.3436   16293504     +160                 -> rawrequestgenerator->baserequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/rawrequestgenerator.class.php:23
    0.3427   16290216     +160                   -> rawrequestgenerator->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:63
    0.3426   16290056     +160                 -> rawrequestgenerator->baserequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/rawrequestgenerator.class.php:23
    0.3291   15832160     +160                           -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3283   15831624     +160                         -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3274   15831248     +160                             -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3193   15828992     +160                             -> loggermanager->addlogger() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:119
    0.3186   15828664     +160                                   -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.2840   15726880     +160                   -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2783   15720024     +160                         -> mysql_query() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:471
    0.2772   15718496     +160                     -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.2772   15718336     +160                   -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.2756   15714464     +160                 -> request->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.2756   15714304     +160               -> request->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:36
    0.1840   13574208     +160           -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/config.class.php:101
    0.1827   13583680     +160               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/Span.class.php:44
    0.3502   16311128     +152                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3306   15879008     +152                 -> cachedtemplate->_get_auto_id() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:41
    0.3244   15829656     +152                     -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3235   15829288     +152                     -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.2865   15732776     +152             -> timestamp->timestamp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:215
    0.2476   14110128     +152       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:47
    0.3542   16313048     +144                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3535   16312136     +144                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.2639   14869896     +144                     -> dirname() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:29
    0.0044     307936     +136               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:3
    0.2987   15789424     +128                 -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:355
    0.2985   15789384     +128                 -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:355
    0.3330   15935176     +120                       -> strstr() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:26
    0.3468   16308088     +112                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:435
    0.3330   15935056     +112                       -> ini_get() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:24
    0.2769   15717264     +112               -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2482   14113080     +112             -> resourceclassloader->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:36
    0.1051    9178944     +112                               -> dirname() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:55
    0.0396    3087696     +112                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:8
    0.0271    1896280     +112               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:25
    0.0202    1360720     +112           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:6
    0.3496   16309832     +104                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:481
    0.3449   16300728     +104                 -> getenv() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.class.php:192
    0.3308   15879376     +104                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1798
    0.2995   15792088     +104             -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:143
    0.2815   15722928     +104                       -> adorecordset_mysql->init() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:872
    0.1051    9179032     +104                               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:58
    0.3620   16315688      +96                 -> array_push() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1180
    0.3382   15926384      +96                 -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:158
    0.3380   15926480      +96                   -> date_timezone::isvalidid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:108
    0.3352   15935560      +96                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:37
    0.3347   15935112      +96                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1636
    0.3338   15935112      +96                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1636
    0.3334   15935560      +96                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:37
    0.3326   15922528      +96                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1636
    0.3322   15922880      +96                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3317   15901200      +96                   -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1567
    0.3308   15879472      +96                   -> basename() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1805
    0.2870   15733224      +96                   -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:158
    0.2868   15733320      +96                     -> date_timezone::isvalidid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:108
    0.2528   14115408      +96           -> file::exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:116
    0.2485   14113056      +96         -> resourceclassloader->addsearchfolder() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:179
    0.1168    9889464      +96                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:16
    0.0604    4942968      +96                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb-time.inc.php:278
    0.0557    4489944      +96                           -> dirname() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:46
    0.0308    2217280      +96                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogsettings.class.php:9
    0.3622   16315776      +88                 -> smarty_core_read_cache_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1189
    0.3615   16315152      +88                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3614   16315152      +88                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3613   16315064      +88             -> defaultview->istemplatehttpcacheenabled() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:170
    0.3485   16309616      +88                     -> preg_replace() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:237
    0.3478   16308768      +88                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:435
    0.3445   16294896      +88                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3440   16294384      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3439   16294384      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3439   16294224      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3438   16294224      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3435   16292992      +88                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3431   16290984      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3430   16290984      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3429   16290824      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3428   16290824      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3425   16285960      +88                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:16
    0.3387   15930480      +88                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3379   15926024      +88             -> timestamp->date() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/timestamp.class.php:53
    0.3376   15925496      +88             -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/misc/version.class.php:29
    0.3366   15924904      +88         -> defaultview->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/defaultview.class.php:73
    0.3348   15935560      +88                     -> smarty_core_get_include_path() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1670
    0.3347   15935200      +88                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1652
    0.3346   15935016      +88                   -> cachedtemplate->_parse_resource_name() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1558
    0.3343   15935552      +88                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:37
    0.3339   15935560      +88                     -> smarty_core_get_include_path() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1670
    0.3338   15935200      +88                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1652
    0.3337   15935016      +88                   -> cachedtemplate->_parse_resource_name() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1558
    0.3326   15922616      +88                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1652
    0.3325   15922432      +88                   -> cachedtemplate->_parse_resource_name() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1558
    0.3315   15900744      +88                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1652
    0.3308   15879560      +88                   -> crc32() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1806
    0.3293   15832248      +88                       -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3287   15831096      +88                     -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3284   15831712      +88                     -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3279   15830720      +88                   -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3275   15831336      +88                         -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3269   15830288      +88                       -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3266   15830816      +88                       -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3253   15829928      +88                     -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3250   15830544      +88                       -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3241   15830032      +88                       -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3232   15829488      +88                       -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3227   15828872      +88                     -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3224   15829488      +88                     -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3217   15828872      +88                   -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3214   15829856      +88                 -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:120
    0.3208   15836320      +88                   -> file::exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:294
    0.3207   15834576      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3205   15828952      +88                 -> cachedtemplate->assign() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:178
    0.3202   15828728      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3202   15828728      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3200   15828816      +88                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3199   15828816      +88                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3199   15828816      +88                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3198   15828816      +88                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3197   15828816      +88                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3196   15828728      +88                     -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:62
    0.3191   15829216      +88                               -> nullappender->appender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:142
    0.3184   15828264      +88                             -> loggermanager->addlogger() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:119
    0.3170   15815504      +88                             -> loggermanager->addlogger() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:119
    0.3169   15815416      +88                             -> logger->addappender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:118
    0.3151   15804432      +88                             -> loggerconfigloader->getloggerlayout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:113
    0.3142   15803848      +88                     -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:56
    0.3139   15797272      +88                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3138   15797184      +88                   -> templatesetstorage::getbasetemplatefolder() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:203
    0.3137   15797096      +88                 -> templateservice->_gettemplatefileinfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:167
    0.3135   15795672      +88               -> templateservice->templateservice() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:67
    0.3134   15794248      +88                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3132   15794160      +88               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:52
    0.3129   15793896      +88                 -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:84
    0.3125   15793632      +88             -> defaultview->smartyview() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:39
    0.3125   15793544      +88         -> defaultview->defaultview() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:69
    0.3121   15791616      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.3119   15791616      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.3117   15791616      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.3116   15791616      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.3114   15791616      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.3110   15794248      +88                     -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3104   15793632      +88                   -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3102   15794248      +88                   -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3096   15793632      +88                 -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3093   15794248      +88                       -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3087   15793632      +88                     -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3084   15794160      +88                     -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3079   15793544      +88                   -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3075   15794160      +88                     -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3069   15793544      +88                   -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3065   15793984      +88                     -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3053   15793368      +88                   -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3050   15793632      +88                     -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3044   15793016      +88                   -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3041   15793632      +88                   -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3035   15793016      +88                 -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3032   15792424      +88                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3030   15793040      +88                     -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.3024   15792424      +88                   -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.3020   15792424      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.3019   15792424      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.3014   15792880      +88               -> pipelinerequest->getbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:59
    0.3014   15792792      +88                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.3012   15793144      +88                 -> bayesianfilter->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinefilter.class.php:37
    0.3011   15793056      +88               -> bayesianfilter->pipelinefilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:40
    0.3009   15793144      +88               -> pipelinerequest->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:29
    0.3005   15793144      +88                 -> commentfilter->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinefilter.class.php:37
    0.3005   15793056      +88               -> commentfilter->pipelinefilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/commentfilter.class.php:27
    0.3002   15792968      +88               -> pipelinerequest->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:29
    0.3000   15792704      +88                 -> nullpipelinefilter->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinefilter.class.php:37
    0.3000   15792616      +88               -> nullpipelinefilter->pipelinefilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/nullpipelinefilter.class.php:18
    0.2999   15792528      +88             -> nullpipelinefilter->nullpipelinefilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:153
    0.2997   15792440      +88               -> pipelinerequest->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:29
    0.2996   15792176      +88               -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2991   15791768      +88             -> pipeline->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:71
    0.2880   15734600      +88                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2866   15732864      +88               -> timestamp->date() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/timestamp.class.php:53
    0.2856   15732624      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.2851   15733672      +88                   -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:239
    0.2846   15733968      +88                           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2845   15733968      +88                           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2781   15719864      +88                   -> adodb_mysql->execute() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:101
    0.2781   15719776      +88                 -> blogs->execute() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:58
    0.2779   15719688      +88               -> blogs->getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:33
    0.2778   15720280      +88                   -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.2767   15716976      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.2765   15716896      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.2764   15716816      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.2762   15716816      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.2761   15716816      +88               -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2663   15093040      +88                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_parse.inc:3
    0.2526   14115288      +88           -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:110
    0.2525   14115200      +88         -> class_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:247
    0.2523   14114928      +88         -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.2521   14114368      +88         -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:62
    0.2521   14114280      +88       -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:263
    0.2515   14114096      +88           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2514   14114096      +88           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2460   14108320      +88           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:101
    0.2294   14094128      +88               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2287   14093304      +88                     -> adorecordset_mysql->adorecordset() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:545
    0.2277   14092408      +88                 -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.2271   14091696      +88               -> configfilestorage->configfilestorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:73
    0.2268   14092928      +88                     -> mysql_select_db() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:447
    0.1909   14092224      +88                 -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.1908   14092224      +88                 -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.1907   14092224      +88                 -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.1905   14092224      +88                 -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:245
    0.1863   13689808      +88                     -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3481
    0.0561    4490808      +88                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:115
    0.0559    4490720      +88                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:85
    0.0024     163488      +88             -> set_error_handler() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/exception.class.php:96
    0.3542   16312904      +80                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3504   16311448      +80                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3503   16311368      +80                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3503   16311288      +80                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3502   16311208      +80                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3472   16308568      +80                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3451   16303008      +80                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:421
    0.3446   16294888      +80           -> smartyview::render() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:224
    0.3434   16292400      +80               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:68
    0.3209   15836400      +80                     -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:436
    0.3187   15828744      +80                             -> patternlayout->patternlayout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:113
    0.3182   15828472      +80                                 -> fileappender->openfp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/appender/fileappender.class.php:43
    0.3173   15815584      +80                             -> patternlayout->patternlayout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:113
    0.2771   15717712      +80               -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.2770   15717632      +80               -> blogs->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.2769   15717152      +80             -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:178
    0.2768   15717056      +80               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2766   15716976      +80               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2764   15716896      +80               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2761   15716728      +80             -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:139
    0.2339   14099712      +80               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.1901   14073528      +80                       -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:18
    0.1834   13573400      +80       -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.1712   13296240      +80               -> date_timezone::setdefault() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:3642
    0.3535   16312208      +72                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3439   16294296      +72                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:73
    0.3430   16290896      +72                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:73
    0.3207   15834488      +72                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:289
    0.2472   14110832      +72             -> eval('$this->_host = $parts["host"];') /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:68
    0.2465   14110536      +72             -> eval('$this->_host = $parts["host"];') /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:68
    0.1285   10348512      +72                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantoken.class.php:5
    0.1157    9825640      +72                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogstatus.class.php:5
    0.1101    9442832      +72                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecommentstatus.class.php:5
    0.0968    8460400      +72                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userstatus.class.php:5
    0.0863    7405656      +72                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/mail/emailmessage.class.php:5
    0.0561    4490880      +72                           -> adodb_setup() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:188
    0.0228    1557056      +72             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/fileuploads.class.php:6
    0.0074     549264      +72             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/debug.php:15
    0.3596   16315064      +64                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3591   16314440      +64                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3578   16313816      +64                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3571   16313856      +64                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3570   16313792      +64                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3564   16313832      +64                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3556   16313768      +64                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3549   16313808      +64                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3549   16313744      +64                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3542   16312824      +64                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3542   16312760      +64                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3534   16311992      +64                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3498   16310896      +64                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:481
    0.3437   16293728      +64                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:68
    0.3427   16290280      +64                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:68
    0.3323   15922968      +64                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.2483   14113168      +64           -> resourceclassloader->addsearchfolder() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:63
    0.2472   14110896      +64             -> eval('$this->_path = $parts["path"];') /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:68
    0.2465   14110600      +64             -> eval('$this->_path = $parts["path"];') /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:68
    0.0556    4489808      +64                           -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:34
    0.0395    3093248      +64                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:5
    0.0271    1896344      +64               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:30
    0.0005      29464      +64     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:8
    0.2638   14869744      +56                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:24
    0.3488   16310816      +48                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:286
    0.1516   11833976      +48             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:11
    0.1485   11657520      +48                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/parser/Parser.php:44
    0.1050    9178776      +48                               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:44
    0.0845    7277744      +48                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:11
    0.0557    4490632      +48                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:76
    0.0204    1360824      +48           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:37
    0.3456   16306432      +40                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.0556    4489848      +40                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:35
    0.0312    2243288      +40                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:5
    0.0005      29504      +40     -> dirname() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:9
    0.3471   16308128      +32                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:402
    0.3471   16308096      +32                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3454   16306360      +32                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.1170    9889496      +32                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:33
    0.1051    9178808      +32                               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:45
    0.0202    1360752      +32           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:12
    0.3576   16313880      +24                     -> phpsniff->_set_feature() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:497
    0.3569   16313856      +24                     -> phpsniff->_set_feature() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:497
    0.3555   16313832      +24                     -> phpsniff->_set_feature() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:497
    0.3494   16310872      +24                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3473   16308640      +24                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3472   16308608      +24                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:118
    0.3470   16308064      +24                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3469   16308032      +24                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3468   16307976      +24                     -> phpsniff->_get_short_name() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:398
    0.3451   16303216      +24                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3450   16301080      +24                   -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3322   15922904      +24                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.2844   15733304      +24                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2838   15724912      +24                       -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:873
    0.2837   15723024      +24                           -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2836   15723000      +24                         -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2398
    0.2816   15722976      +24                           -> mysql_num_fields() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:553
    0.2816   15722952      +24                           -> mysql_num_rows() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:552
    0.2776   15720192      +24                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2773   15718696      +24                       -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.2575   14496880      +24                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:12
    0.2527   14115312      +24             -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:436
    0.2524   14114952      +24         -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2512   14113616      +24           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2483   14113104      +24               -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.1486   11657544      +24                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/parser/Parser.php:69
    0.1438   11309008      +24                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/uintrule.class.php:6
    0.1285   10348536      +24                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantoken.class.php:7
    0.1158    9825688      +24                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogstatus.class.php:7
    0.1157    9825664      +24                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogstatus.class.php:6
    0.1101    9442856      +24                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecommentstatus.class.php:6
    0.1051    9178832      +24                               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:54
    0.0968    8460448      +24                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userstatus.class.php:7
    0.0968    8460424      +24                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userstatus.class.php:6
    0.0759    6489768      +24                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlestatus.class.php:7
    0.0759    6489744      +24                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlestatus.class.php:6
    0.0562    4491432      +24                             -> srand() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:168
    0.0313    2243352      +24                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:14
    0.0312    2243312      +24                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:7
    0.0203    1360776      +24           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:13
    0.3536   16312224      +16                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3493   16310848      +16                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3488   16310832      +16                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:303
    0.3478   16308680      +16                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3477   16308664      +16                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:521
    0.3465   16306568      +16                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.2768   15717072      +16             -> sessioninfo->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:173
    0.1900   14073448      +16                       -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:16
    0.1711   13296152      +16               -> date() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:3639
    0.1286   10348568      +16                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantoken.class.php:12
    0.0313    2243328      +16                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:12
    0.0272    1896376      +16               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:40
    0.0271    1896360      +16               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:35
    0.3474   16308648       +8                   -> phpsniff->_get_gecko() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:95
    0.3473   16308616       +8                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:410
    0.3472   16308584       +8                     -> phpsniff->property() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:410
    0.3472   16308576       +8                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3469   16308040       +8                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:399
    0.3465   16306584       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3465   16306576       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3464   16306552       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3464   16306544       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3464   16306536       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3464   16306528       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3464   16306520       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3463   16306512       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3463   16306504       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3463   16306496       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3462   16306488       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3462   16306480       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3462   16306472       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3462   16306464       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3456   16306456       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3456   16306448       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3456   16306440       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3455   16306392       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3455   16306384       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3455   16306376       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3455   16306368       +8                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.2663   15093048       +8                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_parse.inc:4
    0.2639   14869752       +8                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:28
    0.2333   14098888       +8                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.1711   13296160       +8               -> date_timezone::isvalidid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:3639
    0.1286   10348552       +8                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantoken.class.php:9
    0.1285   10348544       +8                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantoken.class.php:8
    0.0041     286416       +8               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/logger/logger.class.php:12
    0.0041     286408       +8               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/logger/logger.class.php:11
    0.0041     286400       +8               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/logger/logger.class.php:10
    0.3625   16316072       +0                 -> error_reporting() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1240
    0.3625   16316072       +0                 -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1199
    0.3625   16316072       +0                 -> array_pop() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1242
    0.3624   16317720       +0                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3624   16316072     -000                 -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1191
    0.3620   16315592       +0                 -> error_reporting() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1137
    0.3618   16315328       +0               -> smarty::fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:48
    0.3618   16315328       +0             -> cachedtemplate->fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:190
    0.3617   16315064       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:591
    0.3616   16315064       +0             -> cachedtemplate->assign() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:187
    0.3616   16315064     -000             -> properties->getasarray() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:187
    0.3615   16315064     -000               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:146
    0.3614   16315064       +0               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:145
    0.3613   16315064       +0               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:143
    0.3612   16314976       +0                 -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3612   16314976     -000               -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:313
    0.3610   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3610   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:505
    0.3609   16315064       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3609   16315064       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3609   16315064       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3608   16315064       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3608   16315064       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:506
    0.3608   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3608   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3608   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:505
    0.3607   16315064       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3607   16315064       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3606   16315064       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3606   16315064       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3606   16315064       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:506
    0.3606   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3605   16315064       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3605   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3605   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:505
    0.3604   16315064       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3604   16315064       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3604   16315064       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3604   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3603   16315064       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:506
    0.3603   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3603   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:505
    0.3602   16315064       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3602   16315064       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3602   16315064       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3601   16315064       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3601   16315064       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:506
    0.3601   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3601   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:505
    0.3600   16315064       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3600   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3599   16315064       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3599   16315064       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3599   16315064       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3599   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3598   16315064       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3598   16315064       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3597   16315064       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3597   16315064       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3597   16315064       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3596   16315064       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3596   16315000       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3595   16315000       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3595   16315000       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:506
    0.3595   16315000       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3594   16314440       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:551
    0.3594   16314440       +0                     -> phpsniff->_set_quirk() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:509
    0.3593   16314440       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3593   16314440       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3593   16314440       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3593   16314440       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3592   16314440       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3592   16314440       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3591   16314376       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3591   16314376       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:508
    0.3590   16314376       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:506
    0.3590   16314376       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:507
    0.3589   16313816       +0                   -> phpsniff->_get_quirks() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:105
    0.3587   16313816       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3587   16313816       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3586   16313816       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3586   16313816       +0                     -> phpsniff->_set_feature() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:497
    0.3585   16313816       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3585   16313816       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3585   16313816       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3585   16313816       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3584   16313816       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3584   16313816       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3584   16313816       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3583   16313816       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3583   16313816       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3583   16313816       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3582   16313816       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3582   16313816       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3581   16313816       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3581   16313816       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3581   16313816       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3581   16313816       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3580   16313816       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3580   16313816       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3580   16313816       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3580   16313816       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3579   16313816       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3579   16313816       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3579   16313816       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3579   16313816       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3579   16313816       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3578   16313752       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3578   16313752       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3578   16313752       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3578   16313752     -000                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3577   16313880       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3577   16313880       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3577   16313880       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3576   16313856       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3575   16313856       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3575   16313856       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3575   16313856       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3574   16313856       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3574   16313856       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3573   16313856       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3573   16313856       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3573   16313856       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3573   16313856       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3572   16313856       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3572   16313856       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3572   16313856       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3571   16313792       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3571   16313792       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3570   16313856       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3570   16313856       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3570   16313728     -000                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3569   16313856       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3568   16313832       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3568   16313832       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3568   16313832       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3567   16313832       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3567   16313832       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3567   16313832       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3566   16313832       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3566   16313832       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3566   16313832       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3565   16313832       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3565   16313832       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3564   16313832       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3564   16313832       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3563   16313768       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3556   16313768       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3556   16313704     -000                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3555   16313832       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3555   16313832       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3555   16313832       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3554   16313808       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3553   16313808       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3553   16313808       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3553   16313808       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3553   16313808       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3552   16313808       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3552   16313808       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3551   16313808       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3551   16313808       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3551   16313808       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3551   16313808       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3550   16313808       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3550   16313808       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3549   16313744       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3549   16313744       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3548   16313808       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3548   16313808       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3548   16313808       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3548   16313680     -000                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3547   16313600       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3546   16313600       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3546   16313600       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3546   16313600       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3546   16313600       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3545   16313600       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3545   16313600       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3544   16313600       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3544   16313600       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3544   16313600       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3544   16313600       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3541   16312696     -000                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3541   16312432       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3541   16312432       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:547
    0.3540   16312224       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3539   16312224       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3539   16312224       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3539   16312224       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3538   16312224       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3538   16312224       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3538   16312224       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3537   16312224       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3537   16312224       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3537   16312224       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3536   16312208       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:202
    0.3535   16311992       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3535   16311992       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3534   16311928       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3534   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3534   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3533   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3533   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3533   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3532   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3532   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3531   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3531   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3531   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3531   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3530   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3530   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3529   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3529   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3529   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3528   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3528   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3527   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3527   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3527   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3527   16311928       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3527   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3526   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3526   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3525   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3525   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3525   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3524   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3524   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3524   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3523   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3523   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3523   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3522   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3522   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3522   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3521   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3521   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3521   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3520   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3520   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3519   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3519   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3519   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3518   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3518   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3518   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3517   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3517   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3517   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3516   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3516   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3516   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3515   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3515   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3514   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3514   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3514   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3514   16311928       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3514   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3513   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3513   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3513   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3512   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3512   16311928       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3512   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3512   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3512   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3511   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3511   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3510   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3510   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3510   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3509   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3509   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3509   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3508   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3508   16311928       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3508   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3508   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3507   16311928       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3507   16311928       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3506   16311928       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3506   16311928       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3506   16311928       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3504   16311368       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3504   16311368       +0                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:496
    0.3504   16311368       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:494
    0.3504   16311368       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3503   16311368       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3503   16311368       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:493
    0.3502   16311208       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:495
    0.3502   16310976     -000                   -> phpsniff->_get_features() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:103
    0.3501   16311104       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3501   16311104       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3500   16310896       +0                         -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:199
    0.3499   16310896       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:142
    0.3499   16310896       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:138
    0.3499   16310896       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:143
    0.3499   16310896       +0                     -> phpsniff->is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:482
    0.3497   16309832       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:142
    0.3496   16309832       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:138
    0.3496   16309832       +0                     -> phpsniff->is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:482
    0.3495   16309728       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:480
    0.3495   16309728       +0                     -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:479
    0.3495   16309728     -000                   -> phpsniff->_get_javascript() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:101
    0.3494   16310848       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3494   16310848       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:385
    0.3493   16310832       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3493   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:383
    0.3493   16310832       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:384
    0.3492   16310832       +0                     -> stristr() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:372
    0.3492   16310832       +0                     -> stristr() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:367
    0.3492   16310832       +0                     -> stristr() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:362
    0.3492   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:377
    0.3491   16310832       +0                     -> stristr() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:357
    0.3491   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:352
    0.3491   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:347
    0.3490   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:342
    0.3490   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:337
    0.3490   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:330
    0.3490   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:325
    0.3489   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:319
    0.3489   16310832       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:309
    0.3486   16309616       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3486   16309616       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3486   16309528     -000                   -> phpsniff->_get_os_info() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:99
    0.3485   16309616       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:242
    0.3485   16309528       +0                     -> getenv() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:236
    0.3484   16309528       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3484   16309528       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3484   16309528       +0                   -> phpsniff->_get_languages() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:97
    0.3483   16309528       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3483   16309528       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3483   16309528       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:532
    0.3482   16309528       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3482   16309528       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3482   16309528       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:531
    0.3482   16309528       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:530
    0.3481   16309528       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3481   16309528       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3481   16309528       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:529
    0.3479   16308680       +0                       -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:155
    0.3479   16308680       +0                       -> phpsniff->_perform_browser_search() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:156
    0.3479   16308680     -000                     -> phpsniff->browser_is() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:527
    0.3478   16308680       +0                     -> phpsniff->_get_short_name() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:527
    0.3478   16308664       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3477   16308648       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:118
    0.3477   16308648       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:519
    0.3476   16308648       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3476   16308648       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3476   16308648       +0                     -> phpsniff->property() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:519
    0.3475   16308648       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:118
    0.3475   16308648       +0                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:517
    0.3475   16308648       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:518
    0.3475   16308648       +0                     -> phpsniff->property() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:517
    0.3473   16308616       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3470   16308064       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3470   16308064       +0                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:400
    0.3470   16308040       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3469   16308008       +0                       -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:543
    0.3469   16308008     -000                     -> phpsniff->_set_browser() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:398
    0.3463   16306504       +0                       -> each() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:426
    0.3453   16303576       +0                     -> phpsniff->_build_regex() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:390
    0.3452   16303216       +0                   -> phpsniff->_test_cookies() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:91
    0.3451   16302928       +0                     -> getenv() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:419
    0.3451   16302928       +0                     -> getenv() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:415
    0.3450   16302928       +0                   -> phpsniff->_get_ip() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/phpsniff/phpSniff.core.php:88
    0.3447   16294888       +0             -> view::render() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:163
    0.3447   16294888       +0                 -> header() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:172
    0.3447   16294888       +0               -> defaultview->sendcontenttype() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:309
    0.3446   16294808       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3445   16294808       +0           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:221
    0.3445   16294808     -000             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssparser.class.php:56
    0.3444   16294808       +0               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:186
    0.3443   16294600       +0             -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/rssparser.class.php:55
    0.3443   16294384       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3442   16294384       +0           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:220
    0.3442   16294384       +0           -> bloginfo->getsettings() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:220
    0.3441   16294384       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3441   16294384       +0           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:219
    0.3440   16294296     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:85
    0.3438   16294136     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:70
    0.3437   16293664       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3433   16290984       +0           -> bloginfo->getblogrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:219
    0.3432   16290984       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3432   16290984       +0           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:218
    0.3430   16290896     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:85
    0.3429   16290736     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/baserequestgenerator.class.php:70
    0.3427   16290216       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3384   15926200       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3383   15926200     -000           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:216
    0.3382   15926288       +0               -> timestamp->setdate() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:134
    0.3381   15926288       +0               -> date() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:134
    0.3381   15926288     -000               -> is_null() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:133
    0.3380   15926024       +0               -> date_timezone::getdefault() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:132
    0.3378   15925696       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3378   15925696     -000           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:215
    0.3376   15925496       +0               -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3376   15925496       +0               -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3375   15925408       +0           -> version::getversion() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:215
    0.3375   15925408       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3374   15924904     -000           -> bloginfo->getlocale() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:214
    0.3371   15924904       +0             -> defaultview->iscachingenabled() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:99
    0.3371   15924904       +0             -> cachedtemplate->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:100
    0.3371   15924904       +0               -> cachedtemplate->is_cached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:59
    0.3370   15924904       +0           -> defaultview->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:194
    0.3370   15924904     -000         -> blogview::render() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/defaultview.class.php:82
    0.3367   15924904       +0           -> cachedtemplate->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:100
    0.3367   15924904       +0             -> cachedtemplate->is_cached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:59
    0.3366   15924904       +0           -> defaultview->iscachingenabled() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:99
    0.3366   15924816       +0         -> bloginfo->getsettings() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/defaultview.class.php:67
    0.3365   15924312       +0       -> defaultaction->getview() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:317
    0.3364   15924312       +0         -> formvalidator->setformisvalid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/action.class.php:322
    0.3363   15924312     -000       -> defaultaction->setsuccess() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:306
    0.3354   15935560       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3354   15935560       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:40
    0.3354   15935560       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3353   15935560       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3353   15935560       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3353   15935560       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:38
    0.3353   15935560       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:37
    0.3352   15935560       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:38
    0.3351   15935280       +0                   -> smarty_core_is_secure() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1608
    0.3351   15935280       +0                   -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1567
    0.3350   15935560       +0                     -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3350   15935280     -000                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1566
    0.3349   15935736       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:34
    0.3349   15935560     -000                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3347   15935016       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1634
    0.3346   15934928     -000                 -> cachedtemplate->_fetch_resource_info() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:74
    0.3345   15935552       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3345   15935552       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:40
    0.3344   15935552       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3344   15935552       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3344   15935552       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3344   15935552       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:38
    0.3344   15935552       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:37
    0.3343   15935552       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:38
    0.3342   15935280       +0                   -> smarty_core_is_secure() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1608
    0.3341   15935560       +0                     -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3341   15935280       +0                   -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1567
    0.3341   15935280     -000                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1566
    0.3340   15935736       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:34
    0.3340   15935560     -000                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3338   15935016       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1634
    0.3336   15934928     -000                 -> cachedtemplate->_fetch_resource_info() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:74
    0.3335   15935560       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3335   15935560       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3335   15935560       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:40
    0.3335   15935560       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3335   15935560       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:38
    0.3335   15935560       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:37
    0.3334   15935560       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3334   15935560       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:38
    0.3333   15935280       +0                   -> smarty_core_is_secure() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1608
    0.3332   15935280       +0                   -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1567
    0.3332   15935280     -000                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1566
    0.3331   15935560       +0                     -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3331   15935560     -000                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3330   15935832       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:34
    0.3330   15935176       +0                       -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.get_include_path.php:30
    0.3329   15934944     -000                     -> smarty_core_get_include_path() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1670
    0.3325   15922432       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1634
    0.3324   15922344     -000                 -> cachedtemplate->_fetch_resource_info() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:74
    0.3323   15922968       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:39
    0.3323   15922968       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:40
    0.3323   15922904       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:38
    0.3323   15922904       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:37
    0.3322   15922784       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:38
    0.3321   15922600       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.is_secure.php:35
    0.3320   15922392     -000                   -> smarty_core_is_secure() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1608
    0.3316   15901296       +0                     -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1663
    0.3316   15901104     -000                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1566
    0.3315   15900352       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1634
    0.3312   15888552     -000                 -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:51
    0.3311   15879336       +0                   -> fread() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1745
    0.3311   15879336       +0                   -> filesize() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1745
    0.3310   15879160       +0                   -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1736
    0.3310   15879160       +0                   -> fopen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1739
    0.3309   15879560       +0                   -> substr() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1809
    0.3309   15879160     -000                 -> cachedtemplate->_read_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:43
    0.3308   15879472       +0                   -> urlencode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1805
    0.3308   15879272       +0                   -> urlencode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1798
    0.3306   15879008       +0                 -> cachedtemplate->_get_auto_filename() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/core/core.read_cache_file.php:42
    0.3305   15878856     -000               -> smarty_core_read_cache_file() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:1018
    0.3298   15829840       +0           -> defaultview->iscachingenabled() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:99
    0.3298   15829840       +0           -> cachedtemplate->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:100
    0.3298   15829840       +0             -> cachedtemplate->is_cached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:59
    0.3297   15829840     -000         -> defaultview->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:74
    0.3296   15832072       +0             -> defaultview->setcharset() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:48
    0.3295   15831632       +0             -> pluginmanager->setbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:44
    0.3295   15831568     -000             -> bloginfo->getlocale() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:47
    0.3294   15831632     -000             -> pluginmanager::getpluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:43
    0.3292   15832160       +0                     -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3291   15832160       +0                             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3291   15832000     -000                         -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3289   15831272       +0                           -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3289   15831272       +0                           -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3288   15831272       +0                         -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3288   15831096       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3287   15831096       +0                         -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3287   15831096       +0                       -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3287   15831008       +0                   -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3286   15831008       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3286   15831008       +0                   -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3286   15831008       +0                   -> customfieldsvalues->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3285   15831008       +0                 -> customfieldsvalues->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldsvalues.class.php:18
    0.3285   15831008     -000               -> customfieldsvalues->customfieldsvalues() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:48
    0.3284   15831624       +0                   -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3283   15831624       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3282   15831464     -000                       -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3280   15830896       +0                         -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3280   15830896       +0                       -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3280   15830896       +0                         -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3279   15830720       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3279   15830720       +0                       -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3279   15830720       +0                     -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3278   15830632       +0                 -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3278   15830632       +0                 -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3277   15830632       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3277   15830632       +0                 -> blogs->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3277   15830632     -000               -> blogs->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:47
    0.3275   15831248       +0                       -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3274   15831248       +0                               -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3274   15831088     -000                           -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3271   15830464       +0                             -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3271   15830464       +0                           -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3271   15830464       +0                             -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3270   15830288       +0                             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3270   15830288       +0                           -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3270   15830288       +0                         -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3269   15830200       +0                     -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3268   15830200       +0                     -> userpermissions->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3268   15830200       +0                   -> userpermissions->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userpermissions.class.php:24
    0.3268   15830200       +0                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3268   15830200       +0                     -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3267   15830200     -000                 -> userpermissions->userpermissions() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/users.class.php:27
    0.3265   15830728       +0                     -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3264   15830728       +0                           -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3264   15830728       +0                             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3264   15830728     -000                         -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3255   15830104       +0                           -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3255   15830104       +0                         -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3255   15830104       +0                           -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3254   15829928       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3254   15829928       +0                         -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3253   15829928       +0                       -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3253   15829840       +0                   -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3252   15829840       +0                   -> users->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3252   15829840       +0                 -> users->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/users.class.php:23
    0.3252   15829840       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3252   15829840       +0                   -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3251   15829840     -000               -> users->users() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:46
    0.3250   15830456       +0                     -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3249   15830456       +0                           -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3249   15830456       +0                             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3248   15830456     -000                         -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3246   15829832       +0                           -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3246   15829832       +0                         -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3246   15829832       +0                           -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3245   15829656       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3245   15829656       +0                         -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3245   15829656       +0                       -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3244   15829504       +0                   -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3244   15829504       +0                   -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3243   15829504       +0                   -> trackbacks->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3243   15829504       +0                 -> trackbacks->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/trackbacks.class.php:25
    0.3243   15829504       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3242   15829504     -000               -> trackbacks->trackbacks() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:45
    0.3241   15829944       +0                     -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3240   15829944       +0                           -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3240   15829944       +0                             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3240   15829944     -000                         -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3238   15829464       +0                           -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3238   15829464       +0                           -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3237   15829464       +0                         -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3236   15829288       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3236   15829288       +0                         -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3236   15829288       +0                       -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3235   15829136       +0                   -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3235   15829136       +0                   -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3234   15829136       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3234   15829136       +0                   -> articlecomments->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3234   15829136       +0                 -> articlecomments->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecomments.class.php:25
    0.3234   15829136     -000               -> articlecomments->articlecomments() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:44
    0.3232   15829400       +0                     -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3231   15829400       +0                           -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3231   15829400       +0                             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3231   15829400     -000                         -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3229   15829048       +0                           -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3229   15829048       +0                           -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3228   15829048       +0                         -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3228   15828872       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3227   15828872       +0                         -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3227   15828872       +0                       -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3227   15828784       +0                   -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3226   15828784       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3226   15828784       +0                   -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3226   15828784       +0                   -> articlecategories->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3225   15828784       +0                 -> articlecategories->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:32
    0.3225   15828784     -000               -> articlecategories->articlecategories() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:43
    0.3223   15829400       +0                   -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3222   15829400       +0                         -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3222   15829400       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3222   15829400     -000                       -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3219   15829048       +0                         -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3219   15829048       +0                       -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3219   15829048       +0                         -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3218   15828872       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3218   15828872       +0                       -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3218   15828872       +0                     -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3217   15828784       +0                 -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3216   15828784       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3216   15828784       +0                 -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3216   15828784       +0                 -> articles->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3215   15828784       +0               -> articles->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:42
    0.3215   15828784     -000             -> articles->articles() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:41
    0.3214   15829856       +0                 -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:120
    0.3212   15829592     -000               -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:74
    0.3209   15836400       +0                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:438
    0.3209   15836400       +0                   -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:297
    0.3207   15834416       +0                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:288
    0.3205   15828952       +0                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:591
    0.3205   15828864       +0                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:591
    0.3204   15828864       +0                 -> cachedtemplate->assign() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:177
    0.3203   15828640     -000                   -> cachedtemplate->register_block() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:37
    0.3202   15828640     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:33
    0.3201   15828640       +0                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:32
    0.3201   15828640     -000                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/cachedtemplate.class.php:31
    0.3200   15828728     -000                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:82
    0.3199   15828728     -000                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:81
    0.3198   15828728     -000                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:80
    0.3197   15828728       +0                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:63
    0.3197   15828728     -000                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:75
    0.3195   15828640       +0                         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:591
    0.3195   15828640       +0                       -> cachedtemplate->assign() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:580
    0.3194   15828640     -000                     -> cachedtemplate->smarty() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/template.class.php:59
    0.3192   15828920     -000                             -> logger->logger() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:117
    0.3192   15828832     -000                             -> logger->addappender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:118
    0.3190   15829128       +0                                 -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3190   15829128       +0                                 -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3189   15828744       +0                             -> loggermanager->createappenderinstance() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:114
    0.3189   15828744       +0                                   -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.3188   15828744       +0                               -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:99
    0.3188   15828744       +0                                 -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:112
    0.3188   15828744       +0                             -> loggerconfigloader->getloggerappender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:114
    0.3187   15828744       +0                               -> layout::layout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/layout/patternlayout.class.php:28
    0.3185   15828264       +0                               -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.3185   15828264       +0                               -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:77
    0.3185   15828264       +0                             -> loggerconfigloader->getloggerlayout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:113
    0.3184   15828264       +0                             -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:110
    0.3183   15828264     -000                             -> logger->logger() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:117
    0.3183   15828176     -000                             -> logger->addappender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:118
    0.3182   15828472       +0                                   -> fopen() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/appender/fileappender.class.php:57
    0.3181   15827984     -000                               -> fileappender->fileappender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:142
    0.3177   15815968       +0                                 -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3177   15815968       +0                                 -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3176   15815584       +0                             -> loggermanager->createappenderinstance() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:114
    0.3175   15815584       +0                                   -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.3175   15815584       +0                                 -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:112
    0.3174   15815584       +0                               -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:99
    0.3174   15815584       +0                             -> loggerconfigloader->getloggerappender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:114
    0.3173   15815584       +0                               -> layout::layout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/layout/patternlayout.class.php:28
    0.3172   15815504       +0                                   -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.3172   15815504       +0                               -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:77
    0.3172   15815504       +0                                 -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:112
    0.3171   15815504       +0                               -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.3171   15815504       +0                             -> loggerconfigloader->getloggerlayout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:113
    0.3170   15815504       +0                             -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:110
    0.3169   15815328     -000                             -> logger->logger() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:117
    0.3168   15815536     -000                               -> nullappender->appender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:142
    0.3156   15804816       +0                                 -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3155   15804816       +0                                 -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3155   15804432       +0                             -> loggermanager->createappenderinstance() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:114
    0.3154   15804432       +0                                   -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.3154   15804432       +0                                 -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:112
    0.3153   15804432       +0                               -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:99
    0.3153   15804432       +0                             -> loggerconfigloader->getloggerappender() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:114
    0.3152   15804432       +0                             -> patternlayout->patternlayout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:113
    0.3152   15804432       +0                               -> layout::layout() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/layout/patternlayout.class.php:28
    0.3151   15804432       +0                                   -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.3151   15804432       +0                               -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:77
    0.3151   15804432       +0                                 -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:112
    0.3150   15804344       +0                               -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:66
    0.3150   15804344       +0                             -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:110
    0.3149   15804344       +0                             -> loggerconfigloader->getconfiguredloggers() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:108
    0.3149   15804344       +0                               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:52
    0.3149   15804344       +0                             -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:100
    0.3149   15804344       +0                               -> array_keys() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:53
    0.3148   15804344       +0                               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:52
    0.3148   15804344       +0                               -> array_keys() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/config/loggerconfigloader.class.php:53
    0.3148   15804344     -000                             -> loggerconfigloader->getconfiguredloggers() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:98
    0.3145   15804024       +0                                 -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3145   15804024       +0                                 -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3144   15803848       +0                             -> loggerconfigloader->loggerconfigloader() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:97
    0.3143   15803848       +0                         -> loggermanager->loggermanager() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:177
    0.3143   15803848       +0                           -> loggermanager->_loadloggerconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:87
    0.3143   15803848       +0                       -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/loggermanager.class.php:192
    0.3140   15798896       +0                     -> is_dir() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:172
    0.3138   15797184       +0                     -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templatesetstorage.class.php:66
    0.3138   15797184       +0                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templatesetstorage.class.php:68
    0.3136   15795672       +0               -> blogsettings->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:70
    0.3135   15795672       +0                 -> templateservice->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:57
    0.3135   15795672       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3135   15795672       +0               -> defaultview->iscachingenabled() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:68
    0.3133   15794160       +0               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:53
    0.3131   15794072       +0                 -> request->request() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:87
    0.3131   15794072       +0                   -> request->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:36
    0.3131   15794072       +0                     -> request->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3131   15794072       +0                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3130   15794072       +0                   -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php:140
    0.3129   15793896       +0                   -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3128   15793808       +0                   -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:100
    0.3128   15793808       +0                 -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:82
    0.3127   15793808       +0                 -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:74
    0.3127   15793808       +0                   -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3127   15793808       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3126   15793808       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3126   15793808       +0                 -> defaultview->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:72
    0.3125   15793544       +0           -> defaultview->blogview() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/defaultview.class.php:23
    0.3123   15791528       +0         -> bloginfo->getsettings() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:60
    0.3123   15791528       +0         -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:57
    0.3122   15791616       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.3122   15791528     -000       -> defaultaction->perform() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:305
    0.3121   15791616       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3121   15791616       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3120   15791616       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.3120   15791616       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3120   15791528     -000         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:46
    0.3119   15791616       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3119   15791528     -000         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:45
    0.3118   15791616       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.3118   15791616       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3118   15791616       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3117   15791616       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.3117   15791616       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3117   15791528     -000         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:38
    0.3116   15791616       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3115   15791616       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.3115   15791616       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3115   15791616       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3115   15791528     -000         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:37
    0.3114   15791528       +0         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/defaultaction.class.php:35
    0.3113   15791528       +0       -> defaultaction->validate() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:304
    0.3112   15791528     -000       -> defaultaction->setpreviousaction() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:300
    0.3110   15794160       +0                   -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3109   15794160       +0                         -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3109   15794160       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3108   15794160     -000                       -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3107   15793808       +0                         -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3106   15793808       +0                       -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3106   15793808       +0                         -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3105   15793632       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3105   15793632       +0                       -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3105   15793632       +0                     -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3104   15793544       +0                 -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3104   15793544       +0                 -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3103   15793544       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3103   15793544       +0                 -> customfieldsvalues->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3103   15793544       +0               -> customfieldsvalues->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfieldsvalues.class.php:18
    0.3103   15793544     -000             -> customfieldsvalues->customfieldsvalues() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:48
    0.3101   15794160       +0                 -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3100   15794160       +0                       -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3100   15794160       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3100   15794160     -000                     -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3098   15793808       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3098   15793808       +0                     -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3098   15793808       +0                       -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3097   15793632       +0                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3097   15793632       +0                     -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3096   15793632       +0                   -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3096   15793544       +0               -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3095   15793544       +0                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3095   15793544       +0               -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3095   15793544       +0               -> blogs->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3094   15793544     -000             -> blogs->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:47
    0.3092   15794160       +0                             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3092   15794160       +0                     -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3091   15794160       +0                           -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3091   15794160     -000                         -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3089   15793808       +0                           -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3089   15793808       +0                         -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3089   15793808       +0                           -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3088   15793632       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3088   15793632       +0                         -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3087   15793632       +0                       -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3087   15793544       +0                   -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3086   15793544       +0                   -> userpermissions->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3086   15793544       +0                 -> userpermissions->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userpermissions.class.php:24
    0.3086   15793544       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3086   15793544       +0                   -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3085   15793544     -000               -> userpermissions->userpermissions() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/users.class.php:27
    0.3084   15794072       +0                   -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3083   15794072       +0                         -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3083   15794072       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3082   15794072     -000                       -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3081   15793720       +0                         -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3080   15793720       +0                       -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3080   15793720       +0                         -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3079   15793544       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3079   15793544       +0                       -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3079   15793544       +0                     -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3078   15793456       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3078   15793456       +0                 -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3078   15793456       +0                 -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3077   15793456       +0                 -> users->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3077   15793456       +0               -> users->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/users.class.php:23
    0.3077   15793456     -000             -> users->users() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:46
    0.3075   15794072       +0                   -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3074   15794072       +0                         -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3074   15794072       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3074   15794072     -000                       -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3071   15793720       +0                         -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3071   15793720       +0                       -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3071   15793720       +0                         -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3070   15793544       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3070   15793544       +0                       -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3069   15793544       +0                     -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3069   15793456       +0                 -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3068   15793456       +0                 -> trackbacks->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3068   15793456       +0               -> trackbacks->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/trackbacks.class.php:25
    0.3068   15793456       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3068   15793456       +0                 -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3067   15793456     -000             -> trackbacks->trackbacks() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:45
    0.3065   15793896       +0                   -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3064   15793896       +0                         -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3064   15793896       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3063   15793896     -000                       -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3055   15793544       +0                         -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3055   15793544       +0                         -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3054   15793544       +0                       -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3054   15793368       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3054   15793368       +0                       -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3053   15793368       +0                     -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3053   15793280       +0                 -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3052   15793280       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3052   15793280       +0                 -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3052   15793280       +0                 -> articlecomments->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3052   15793280       +0               -> articlecomments->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecomments.class.php:25
    0.3051   15793280     -000             -> articlecomments->articlecomments() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:44
    0.3049   15793544       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3049   15793544       +0                   -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3048   15793544       +0                         -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3048   15793544     -000                       -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3046   15793192       +0                         -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3046   15793192       +0                       -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3046   15793192       +0                         -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3045   15793016       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3045   15793016       +0                       -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3044   15793016       +0                     -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3044   15792928       +0                 -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3043   15792928       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3043   15792928       +0                 -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3043   15792928       +0                 -> articlecategories->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3043   15792928       +0               -> articlecategories->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:32
    0.3042   15792928     -000             -> articlecategories->articlecategories() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:43
    0.3041   15793544       +0                 -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3040   15793544       +0                       -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3040   15793544       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3039   15793544     -000                     -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3037   15793192       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3037   15793192       +0                     -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3037   15793192       +0                       -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3036   15793016       +0                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3036   15793016       +0                     -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3036   15793016       +0                   -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3035   15792928       +0               -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3035   15792928       +0               -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3034   15792928       +0                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3034   15792928       +0               -> articles->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3034   15792928       +0             -> articles->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articles.class.php:42
    0.3033   15792336     -000             -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:239
    0.3032   15792336       +0               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/referers.class.php:28
    0.3031   15792336     -000               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/referers.class.php:27
    0.3030   15792952       +0                   -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.3029   15792952       +0                         -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3029   15792952       +0                           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3029   15792952     -000                       -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.3026   15792600       +0                         -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.3026   15792600       +0                         -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.3025   15792600       +0                       -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.3024   15792424       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3024   15792424       +0                       -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.3024   15792424       +0                     -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.3023   15792336       +0                 -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:78
    0.3023   15792336       +0                 -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.3022   15792336       +0                 -> referers->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:73
    0.3022   15792336       +0               -> referers->model() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/referers.class.php:25
    0.3022   15792336       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3022   15792336     -000             -> referers->referers() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:238
    0.3021   15792424       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.3021   15792424       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3021   15792424       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3020   15792424       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.3020   15792424       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3020   15792336     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:234
    0.3019   15792424       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.3019   15792336       +0             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:234
    0.3018   15792336       +0           -> defaultaction->_updatereferrer() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:85
    0.3018   15792336     -000           -> pipelineresult->isvalid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:74
    0.3017   15792880       +0             -> pipelineresult->isvalid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:159
    0.3016   15792880       +0               -> pipelineresult->pipelineresult() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:65
    0.3015   15792880       +0               -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:64
    0.3015   15792880       +0               -> pipelinerequest->gethttprequest() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:60
    0.3014   15792704       +0               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:53
    0.3013   15792704       +0               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:51
    0.3012   15793144       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3012   15792704     -000             -> bayesianfilter->filter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:155
    0.3011   15792968     -000             -> bayesianfilter->bayesianfilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:153
    0.3010   15793144       +0               -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:32
    0.3010   15793144       +0                 -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3010   15793144       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3010   15793144       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:31
    0.3009   15793144       +0                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3008   15792880       +0               -> pipelineresult->pipelineresult() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/commentfilter.class.php:41
    0.3008   15792880       +0             -> pipelineresult->isvalid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:159
    0.3007   15792880       +0               -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/commentfilter.class.php:40
    0.3006   15792704     -000             -> commentfilter->filter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:155
    0.3005   15793144       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3004   15792968       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3004   15792968       +0             -> commentfilter->commentfilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:153
    0.3003   15792968       +0               -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:32
    0.3003   15792968       +0                 -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.3003   15792968       +0                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.3003   15792968       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:31
    0.3001   15792528       +0               -> pipelineresult->pipelineresult() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/nullpipelinefilter.class.php:26
    0.3001   15792528     -000             -> nullpipelinefilter->filter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:155
    0.3000   15792704       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2999   15792440       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2998   15792440       +0               -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:32
    0.2998   15792440       +0                 -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.2998   15792440       +0                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2998   15792440       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipelinerequest.class.php:31
    0.2996   15792088       +0             -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:144
    0.2995   15791984     -000           -> pipeline->process() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:70
    0.2994   15791976     -000               -> pipeline->registerfilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:95
    0.2993   15791880     -000               -> pipeline->registerfilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:94
    0.2992   15791768       +0               -> pipeline->registerfilter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:93
    0.2992   15791768       +0             -> pipeline->_registerdefaultfilters() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/pipeline.class.php:79
    0.2992   15791768       +0               -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2990   15789336     -000               -> locale->mergelocale() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:87
    0.2989   15790976       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2988   15789424       +0                   -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.2987   15789424       +0                   -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.2987   15789296     -000               -> pluginmanager->pluginhaslocale() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:80
    0.2986   15789384       +0                   -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.2986   15789384       +0                   -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.2985   15789256       +0               -> pluginmanager->pluginhaslocale() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:74
    0.2983   15789256     -000               -> pluginmanager::getpluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:72
    0.2882   15734512       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.2882   15734512       +0                     -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:111
    0.2882   15734512       +0                       -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.2881   15734512       +0                   -> locale->_loadlocalefile() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:129
    0.2881   15734512     -000                 -> locale->_loadlocaleinfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:98
    0.2880   15734512       +0                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:190
    0.2879   15734512       +0                 -> locale->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:92
    0.2879   15734512       +0                 -> locale->getlocalefolder() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:94
    0.2879   15734512       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2879   15734512       +0                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locale.class.php:188
    0.2878   15733896       +0             -> locales::getlocale() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:463
    0.2877   15733896       +0             -> blogsettings->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:463
    0.2876   15733896       +0           -> bloginfo->getlocale() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:64
    0.2875   15732472       +0           -> pluginmanager->setbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:60
    0.2874   15733040       +0             -> sessioninfo->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:223
    0.2874   15732472     -000           -> pluginmanager::getpluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:59
    0.2873   15733040       +0             -> sessioninfo->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:222
    0.2873   15733040       +0             -> sessioninfo->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:221
    0.2872   15733040       +0             -> timestamp->getday() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:218
    0.2872   15733040       +0               -> date::getmonth() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/timestamp.class.php:124
    0.2871   15733040       +0             -> timestamp->getmonth() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:217
    0.2871   15733040     -000             -> timestamp->getyear() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:216
    0.2869   15733128       +0                 -> timestamp->setdate() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:134
    0.2869   15733128       +0                 -> date() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:134
    0.2869   15733128     -000                 -> is_null() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:133
    0.2866   15732864       +0                 -> date_timezone::getdefault() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:132
    0.2865   15732624       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.2865   15732624       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2856   15732624       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2855   15732536       +0             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:208
    0.2855   15732536       +0           -> defaultaction->checkdateparameter() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:56
    0.2854   15732536       +0           -> sessioninfo->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:54
    0.2854   15732536       +0           -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:54
    0.2853   15732536     -000             -> bloginfo->getstatus() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:197
    0.2852   15737976       +0                 -> bloginfo->setsettings() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:69
    0.2850   15733584     -000                 -> blogs->getblogsettingsfromfield() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:68
    0.2849   15733736     -000                   -> bloginfo->setstatus() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:88
    0.2848   15733864     -000                           -> preg_replace() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:68
    0.2848   15733792       +0                           -> preg_replace() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:56
    0.2847   15733792       +0                         -> textfilter::filterjavascript() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:103
    0.2847   15733792       +0                         -> strip_tags() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:101
    0.2847   15733792     -000                       -> textfilter->filterallhtml() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bloginfo.class.php:290
    0.2846   15733880     -000                         -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:42
    0.2844   15733304       +0                         -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/textfilter.class.php:40
    0.2842   15727176       +0                   -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:84
    0.2842   15727176       +0                   -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:83
    0.2841   15726880       +0                     -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2841   15725752     -000                 -> blogs->_fillbloginformation() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:67
    0.2840   15726880       +0                     -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2839   15724824     -000                 -> adorecordset_mysql->recordcount() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:63
    0.2816   15722928       +0                         -> adorecordset_mysql->_initrs() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2390
    0.2782   15719864       +0                       -> adodb_mysql->_query() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:846
    0.2782   15719864       +0                     -> adodb_mysql->_execute() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:831
    0.2781   15719688       +0               -> blogs->_getbloginfofromquery() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:35
    0.2780   15719688       +0                 -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:97
    0.2780   15719688       +0                 -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:94
    0.2780   15719688       +0                 -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:93
    0.2779   15719688       +0               -> db::qstr() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogs.class.php:33
    0.2779   15719600     -000             -> blogs->getbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:186
    0.2777   15720192       +0                 -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.2776   15719872     -000                     -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.2773   15718696       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.2773   15718672       +0                     -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.2772   15718496       +0                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2770   15717632       +0                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2770   15717632       +0               -> db::getdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:75
    0.2768   15717056       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.2768   15717056       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2767   15716888     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:151
    0.2766   15716976       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.2766   15716976       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2765   15716896       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.2765   15716808     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:150
    0.2764   15716896       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2763   15716816       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.2763   15716816       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2763   15716816       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2763   15716728     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:149
    0.2762   15716728     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:148
    0.2761   15716648       +0             -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/action/blogaction.class.php:138
    0.2759   15715904       +0             -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php:74
    0.2758   15715368       +0                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2758   15715368       +0               -> formvalidator->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/forms/formvalidator.class.php:33
    0.2756   15714464       +0                   -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2755   15713680       +0               -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2753   15710968       +0           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2753   15710792     -000       -> actioninfo->actioninfo() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:298
    0.2751   15711240     -000           -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:110
    0.2750   15718240       +0               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/errorview.class.php:5
    0.2746   15688872     -000               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/defaultview.class.php:6
    0.2745   15690632     -000                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/blogview.class.php:19
    0.2731   15656528     -000                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:86
    0.2674   15170200     -000                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:36
    0.2639   14869880     -000                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/rssparser/magpierss/rss_fetch.inc:29
    0.2575   14496856       +0                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:11
    0.2574   14496856     -000                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/smartyview.class.php:10
    0.2529   14115408       +0             -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.2529   14115408       +0             -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.2528   14115408       +0           -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:116
    0.2528   14115408       +0             -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:438
    0.2528   14115408       +0             -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:436
    0.2527   14115312       +0           -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:114
    0.2527   14115312       +0             -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:438
    0.2527   14115312       +0           -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:110
    0.2526   14115288       +0           -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:114
    0.2526   14115288       +0           -> file::exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/resourceclassloader.class.php:116
    0.2525   14115200       +0         -> resourceclassloader->load() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:248
    0.2524   14114952       +0         -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.2524   14114952       +0         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2524   14114888     -000       -> blogcontroller->_getactionclassname() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:280
    0.2522   14114368       +0         -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:67
    0.2522   14114368       +0         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2522   14114368       +0         -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:66
    0.2520   14114192       +0         -> request->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:36
    0.2520   14114192       +0           -> request->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.2520   14114192       +0             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2519   14113880       +0       -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php:140
    0.2519   14113880       +0     -> blogcontroller->process() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:44
    0.2518   14114056       +0         -> is_dir() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:172
    0.2518   14113880     -000     -> httpvars::getrequest() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:44
    0.2517   14113728       +0       -> resourceclassloader::getloader() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:157
    0.2516   14113728     -000     -> pluginmanager->loadplugins() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:41
    0.2514   14114008     -000         -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:76
    0.2513   14113616       +0         -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:66
    0.2485   14112176     -000     -> pluginmanager::getpluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:40
    0.2484   14112960     -000       -> blogcontroller->setactionfolderpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/blogcontroller.class.php:32
    0.2481   14111944       +0           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2480   14111768     -000       -> blogcontroller->controller() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/blogcontroller.class.php:31
    0.2477   14110040       +0       -> blogcontroller->_loadactionmaps() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/blogcontroller.class.php:25
    0.2477   14110040     -000     -> blogcontroller->blogcontroller() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:35
    0.2476   14109976       +0         -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php:74
    0.2475   14109728       +0       -> session_start() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:41
    0.2475   14109728       +0       -> session_set_cookie_params() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:40
    0.2474   14109944       +0         -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:92
    0.2474   14109944       +0         -> count() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:92
    0.2474   14109728     -000       -> session_name() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:39
    0.2473   14109944     -000         -> url->gethost() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:87
    0.2471   14109672       +0             -> parse_url() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:59
    0.2470   14109672       +0           -> url->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:47
    0.2470   14109672       +0           -> url->_calculatefields() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:51
    0.2470   14109672       +0             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2469   14109432       +0             -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php:239
    0.2468   14109432       +0           -> httpvars::getserver() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php:269
    0.2468   14109432       +0         -> httpvars::getbaseurl() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:85
    0.2468   14109432     -000       -> sessionmanager::setsessioncookiedomain() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:36
    0.2467   14109648       +0         -> dirname() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:70
    0.2466   14109648     -000         -> url->getpath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:70
    0.2463   14108472       +0           -> url->_calculatefields() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:51
    0.2463   14108472       +0             -> parse_url() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:59
    0.2463   14108472       +0             -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2462   14108472       +0           -> url->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/url.class.php:47
    0.2461   14108232       +0             -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php:239
    0.2461   14108232       +0           -> httpvars::getserver() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/httpvars.class.php:269
    0.2461   14108232       +0         -> httpvars::getbaseurl() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:68
    0.2460   14108232     -000       -> sessionmanager::setsessioncookiepath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:35
    0.2459   14108232     -000         -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:110
    0.2455   14110592       +0                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:621
    0.2455   14110424     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2454   14110592       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2454   14110592       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2454   14110416       +0               -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:88
    0.2453   14110416     -000               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:88
    0.2453   14110392       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2452   14110392       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2451   14110392     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2450   14110368       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2450   14110368       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2450   14110368     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2449   14110256       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2449   14110256       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2448   14110256     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2447   14110120       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2447   14110120       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2447   14110120     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2446   14110024       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2446   14110024       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2445   14110024     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2445   14109992       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2444   14109992       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2444   14109992     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2443   14109880       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2443   14109880       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2443   14109880     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2442   14109776       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2441   14109776       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2441   14109776     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2440   14109624       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2440   14109624       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2440   14109624     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2439   14109472       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2439   14109472       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2438   14109472     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2438   14109312       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2437   14109312       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2437   14109312     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2436   14109176       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2436   14109176       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2436   14109176     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2435   14109056       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2435   14109056       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2434   14109056     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2433   14108944       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2433   14108944       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2433   14108944     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2432   14108816       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2432   14108816       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2432   14108816     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2431   14108688       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2430   14108688       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2430   14108688     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2429   14108528       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2429   14108528       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2429   14108528     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2428   14108424       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2428   14108424       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2427   14108424     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2427   14108288       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2426   14108288       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2426   14108288     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2425   14108160       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2425   14108160       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2425   14108160     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2424   14108008       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2423   14108008       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2423   14108008     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2422   14107840       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2422   14107840       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2422   14107840     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2421   14107640       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2421   14107640       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2420   14107640     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2419   14107504       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2419   14107504       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2419   14107504     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2418   14107368       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2418   14107368       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2418   14107368     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2417   14107240       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2417   14107240       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2416   14107240     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2415   14107120       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2415   14107120       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2415   14107120     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2414   14106992       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2414   14106992       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2413   14106992     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2413   14106800       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2412   14106800       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2412   14106800     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2411   14106632       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2411   14106632       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2411   14106632     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2410   14106536       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2410   14106536       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2409   14106536     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2408   14106392       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2408   14106392       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2408   14106392     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2407   14106272       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2407   14106272       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2406   14106272     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2406   14106144       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2405   14106144       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2405   14106144     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2404   14106048       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2404   14106048       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2404   14106048     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2403   14105928       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2403   14105928       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2402   14105928     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2401   14105792       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2401   14105792       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2401   14105792     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2400   14105648       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2400   14105648       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2399   14105648     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2399   14105536       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2398   14105536       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2398   14105536     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2397   14105432       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2397   14105432       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2397   14105432     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2396   14105280       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2395   14105280       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2395   14105280     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2394   14105152       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2394   14105152       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2394   14105152     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2393   14104984       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2393   14104984       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2392   14104984     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2392   14104856       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2391   14104856       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2391   14104856     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2390   14104720       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2390   14104720       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2390   14104720     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2389   14104608       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2389   14104608       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2388   14104608     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2387   14104504       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2387   14104504       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2386   14104504     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2385   14104384       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2385   14104384       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2384   14103736       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2384   14103736       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2383   14103736     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2383   14103584       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2382   14103584       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2382   14103584     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2381   14103424       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2381   14103424       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2381   14103424     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2380   14103280       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2380   14103280       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2379   14103280     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2379   14103128       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2378   14103128       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2378   14103128     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2377   14102992       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2377   14102992       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2377   14102992     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2376   14102856       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2376   14102856       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2375   14102856     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2374   14102728       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2374   14102728       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2374   14102728     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2373   14102600       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2373   14102600       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2372   14102600     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2371   14102472       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2370   14102472       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2370   14102472     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2369   14102344       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2369   14102344       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2369   14102344     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2368   14102200       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2368   14102200       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2367   14102200     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2366   14102072       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2366   14102072       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2366   14102072     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2365   14101936       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2365   14101936       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2364   14101936     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2364   14101816       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2363   14101816       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2363   14101816     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2362   14101720       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2362   14101720       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2361   14101720     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2361   14101600       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2360   14101600       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2360   14101600     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2359   14101504       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2359   14101504       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2359   14101504     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2358   14101352       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2358   14101352       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2357   14101352     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2357   14101200       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2356   14101200       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2356   14101200     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2355   14101064       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2355   14101064       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2355   14101064     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2354   14100944       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2354   14100944       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2353   14100944     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2352   14100840       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2352   14100840       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2352   14100840     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2351   14100696       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2351   14100696       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2350   14100696     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2350   14100568       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2349   14100568       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2349   14100568     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2348   14100424       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2348   14100424       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2348   14100424     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2347   14100296       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2347   14100296       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2346   14100296     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2345   14100192       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2345   14100192       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2345   14100192     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2344   14100064       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2344   14100064       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2343   14100064     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2343   14099944       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2342   14099944       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2342   14099944     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2341   14099800       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2341   14099800       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2341   14099800     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2340   14099712       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2340   14099712       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2339   14099336       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2338   14099336       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2338   14099336     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2337   14099208       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2337   14099208       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2336   14099208     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2336   14099088       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2335   14099088       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2335   14099088     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2334   14099000       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2334   14099000       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2334   14099000     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2333   14098888       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2332   14097752     -000               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:88
    0.2331   14097656       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2331   14097656       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2330   14097288       +0               -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:88
    0.2330   14097288     -000               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:88
    0.2329   14097088       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2329   14097088       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2329   14097088     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2328   14096928       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2327   14096928       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2327   14096928     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2326   14096824       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2326   14096824       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2326   14096824     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2325   14096712       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2325   14096712       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2324   14096712     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2324   14096608       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2323   14096608       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2323   14096608     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2322   14096512       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2322   14096512       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2322   14096512     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2321   14096272       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2320   14096272       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2320   14096104       +0               -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:88
    0.2320   14096104     -000               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:88
    0.2319   14096096       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2319   14096096       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2318   14096096     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2317   14096000       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2317   14096000       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2317   14096000     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2316   14095888       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2316   14095888       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2315   14095888     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2314   14095664       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2314   14095664       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2314   14095664     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2313   14095560       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2313   14095560       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2312   14095560     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2312   14095456       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2311   14095456       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2311   14095456     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2310   14095352       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2310   14095352       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2310   14095352     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2309   14095248       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2309   14095248       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2309   14095248     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2308   14095144       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2308   14095144       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2307   14095144     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2306   14095032       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2306   14095032       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2306   14095032     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2305   14094944       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2305   14094944       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2304   14094944     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2304   14094792       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2303   14094792       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2303   14094792     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2302   14094704       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2302   14094704       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2302   14094704     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2301   14094616       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2301   14094616       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2300   14094616     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2300   14094528       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2299   14094528       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2299   14094528     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2298   14094440       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2298   14094440       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2298   14094440     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2297   14094440       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2297   14094440       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2296   14094440     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2295   14094352       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2295   14094352       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2295   14094352     -000               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2294   14094128       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2294   14094128       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2293   14093640       +0                   -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2291   14093640       +0               -> adorecordset_mysql->fetchrow() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:80
    0.2291   14093640       +0                 -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2722
    0.2290   14093640       +0                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:873
    0.2289   14093304       +0                       -> mysql_num_fields() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:553
    0.2289   14093304       +0                       -> mysql_fetch_array() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:620
    0.2289   14093304       +0                     -> adorecordset_mysql->_fetch() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2398
    0.2288   14093304       +0                       -> mysql_num_rows() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:552
    0.2288   14093304       +0                     -> adorecordset_mysql->_initrs() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2390
    0.2288   14093304       +0                   -> adorecordset_mysql->init() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:872
    0.2280   14091704       +0                     -> mysql_query() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:471
    0.2280   14091704       +0                   -> adodb_mysql->_query() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:846
    0.2279   14091704       +0                 -> adodb_mysql->_execute() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:831
    0.2279   14091704       +0               -> adodb_mysql->execute() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:70
    0.2278   14091704     -000             -> configdbstorage->_loaddata() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:54
    0.2277   14092320       +0               -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:74
    0.2276   14092320       +0                     -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/properties.class.php:23
    0.2276   14092320       +0                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2275   14092320     -000                   -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.2273   14091872       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.2273   14091872       +0                     -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.2272   14091872       +0                   -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.2272   14091696       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.2271   14091696       +0                   -> configfilestorage->object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:26
    0.2271   14091696       +0                 -> configfilestorage->configabstractstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:37
    0.2270   14091608     -000             -> db::getprefix() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configdbstorage.class.php:51
    0.2269   14092224     -000               -> adodb_mysql->setfetchmode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:48
    0.2267   14092840       +0                   -> adodb_mysql->selectdb() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:367
    0.1910   14092488       +0                 -> adodb_mysql->_pconnect() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:468
    0.1910   14092136     -000               -> adodb_mysql->pconnect() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:41
    0.1909   14092136     -000               -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:39
    0.1908   14092136     -000               -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:38
    0.1906   14092136     -000               -> configfilestorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:37
    0.1904   14090712       +0                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:44
    0.1902   14083248     -000                   -> class_exists() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3585
    0.1901   14073528       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/drivers/adodb-mysql.inc.php:19
    0.1863   13689720       +0                   -> strpos() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3525
    0.1863   13689720       +0                   -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3523
    0.1863   13689720       +0                   -> adoloadcode() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3568
    0.1862   13689720       +0                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3522
    0.1861   13689352       +0               -> newadoconnection() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/db.class.php:34
    0.1861   13689352       +0                 -> adonewconnection() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:3506
    0.1860   13689352       +0                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.1860   13689056     -000                   -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:59
    0.1858   13687536       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.1857   13687536       +0                   -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:57
    0.1857   13687536       +0                     -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:206
    0.1856   13687360       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/object/object.class.php:61
    0.1854   13685496     -000           -> configdbstorage->configdbstorage() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/config.class.php:103
    0.1836   13573400       +0         -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:109
    0.1835   13573400       +0       -> sessionmanager::setsessionsavepath() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php:32
    0.1835   13573400       +0     -> sessionmanager::init() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:33
    0.1835   13573400       +0       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:208
    0.1834   13573320       +0     -> ini_set() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:21
    0.1834   13573320       +0     -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:26
    0.1834   13573320     -000     -> ini_set() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:20
    0.1830   13573152       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/timestamp.class.php:14
    0.1830   13573152     -000           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/timestamp.class.php:13
    0.1829   13580256       +0             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:57
    0.1829   13580256       +0             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:53
    0.1828   13580256       +0             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:49
    0.1828   13580256       +0             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:45
    0.1828   13580256       +0             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:41
    0.1828   13580256     -000             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date.class.php:37
    0.1780   13309808       +0               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/Calc.class.php:7
    0.1780   13309808       +0               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/Calc.class.php:6
    0.1711   13296136       +0               -> getenv() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/Date/TimeZone.class.php:3637
    0.1516   11833928     -000             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/locale/locales.class.php:9
    0.1515   11842472       +0               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:17
    0.1515   11842472     -000               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:16
    0.1513   11845912     -000                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/menu/menu.class.php:7
    0.1485   11657520       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/parser/Parser.php:64
    0.1485   11657520       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/parser/Parser.php:59
    0.1485   11657520       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/parser/Parser.php:54
    0.1485   11657520       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/xml/parser/Parser.php:49
    0.1442   11299816     -000                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/admin/admindefaultview.class.php:14
    0.1440   11306920       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:43
    0.1440   11306920       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:38
    0.1439   11306920       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:32
    0.1439   11306920       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:27
    0.1439   11306920     -000                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/view/view.class.php:26
    0.1437   11308624       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/regexprule.class.php:6
    0.1437   11308624     -000                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/data/validator/rules/regexprule.class.php:5
    0.1358   10820752       +0                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/misc/version.class.php:9
    0.1358   10820752       +0                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/misc/version.class.php:8
    0.1344   10746624     -000                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/referers.class.php:8
    0.1318   10594968       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:21
    0.1318   10594968       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:20
    0.1317   10594968     -000                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/bayesianfilter.class.php:12
    0.1290   10348120     -000                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/bayesian/bayesiantokenizer.class.php:6
    0.1286   10348552       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantoken.class.php:11
    0.1286   10348552       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/bayesiantoken.class.php:10
    0.1258   10082600       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/security/commentfilter.class.php:6
    0.1217    9872816     -000               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginbase.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/pluginmanager.class.php:10
    0.1206    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:153
    0.1206    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:152
    0.1206    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:151
    0.1206    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:150
    0.1205    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:148
    0.1205    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:147
    0.1205    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:145
    0.1205    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:141
    0.1205    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:140
    0.1204    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:139
    0.1204    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:138
    0.1204    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:137
    0.1204    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:136
    0.1204    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:135
    0.1204    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:134
    0.1203    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:132
    0.1203    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:131
    0.1203    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:130
    0.1203    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:129
    0.1203    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:128
    0.1203    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:127
    0.1202    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:126
    0.1202    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:125
    0.1202    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:123
    0.1202    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:122
    0.1202    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:120
    0.1202    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:119
    0.1201    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:118
    0.1201    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:117
    0.1201    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:116
    0.1201    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:115
    0.1201    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:114
    0.1201    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:113
    0.1200    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:111
    0.1200    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:110
    0.1183    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:109
    0.1183    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:108
    0.1183    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:107
    0.1183    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:106
    0.1182    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:105
    0.1182    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:104
    0.1182    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:103
    0.1182    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:102
    0.1182    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:100
    0.1181    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:99
    0.1181    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:97
    0.1181    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:96
    0.1181    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:95
    0.1181    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:94
    0.1180    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:93
    0.1180    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:92
    0.1180    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:90
    0.1180    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:89
    0.1180    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:88
    0.1180    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:87
    0.1179    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:86
    0.1179    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:85
    0.1179    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:83
    0.1179    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:82
    0.1179    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:80
    0.1179    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:79
    0.1178    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:78
    0.1178    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:77
    0.1178    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:76
    0.1177    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:75
    0.1176    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:73
    0.1176    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:72
    0.1176    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:71
    0.1176    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:70
    0.1176    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:69
    0.1175    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:68
    0.1175    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:66
    0.1175    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:65
    0.1175    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:64
    0.1175    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:63
    0.1175    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:62
    0.1174    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:61
    0.1174    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:59
    0.1174    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:58
    0.1174    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:56
    0.1174    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:55
    0.1174    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:53
    0.1173    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:51
    0.1173    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:50
    0.1173    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:48
    0.1173    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:47
    0.1172    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:46
    0.1172    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:45
    0.1172    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:43
    0.1172    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:42
    0.1172    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:41
    0.1171    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:40
    0.1171    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:39
    0.1171    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:38
    0.1171    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:36
    0.1171    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:35
    0.1171    9889496       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:34
    0.1170    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:32
    0.1170    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:31
    0.1170    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:29
    0.1169    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:28
    0.1169    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:27
    0.1169    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:26
    0.1169    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:25
    0.1169    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:24
    0.1169    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:22
    0.1168    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:20
    0.1168    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:19
    0.1168    9889464       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/plugin/eventlist.properties.php:17
    0.1158    9825688       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/blogstatus.class.php:8
    0.1143    9757624       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategories.class.php:13
    0.1142    9757624       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategories.class.php:9
    0.1142    9757624       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategories.class.php:8
    0.1142    9757624       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategories.class.php:12
    0.1142    9757624       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategories.class.php:11
    0.1142    9757624       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/mylinkscategories.class.php:10
    0.1101    9442856       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecommentstatus.class.php:7
    0.1097    9435536     -000                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlenotifications.class.php:11
    0.1096    9448304     -000                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templatesetstorage.class.php:9
    0.1096    9443360     -000                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templateservice.class.php:18
    0.1094    9456032       +0                                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/templatesets/templateset.class.php:7
    0.1052    9179032       +0                               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:61
    0.1052    9179032       +0                               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:60
    0.1052    9179032       +0                               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:59
    0.1051    9178928     -000                               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/template/smarty/Smarty.class.php:55
    0.0969    8460448       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userstatus.class.php:8
    0.0965    8450424       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userpermissions.class.php:12
    0.0964    8450424       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userpermissions.class.php:11
    0.0964    8450424     -000                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/userpermissions.class.php:10
    0.0846    7277744       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:16
    0.0846    7277744       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:15
    0.0845    7277744       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:14
    0.0845    7277744       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:13
    0.0845    7277744       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecategories.class.php:12
    0.0822    7013720     -000                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/article.class.php:15
    0.0807    6919400       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfields.class.php:17
    0.0807    6919400       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfields.class.php:16
    0.0807    6919400       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfields.class.php:15
    0.0806    6919400       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfields.class.php:14
    0.0806    6919400       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfields.class.php:13
    0.0806    6919400     -000                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/customfields/customfields.class.php:12
    0.0759    6489768       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlestatus.class.php:8
    0.0759    6489720     -000                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlestatus.class.php:5
    0.0753    6468192       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecomments.class.php:8
    0.0753    6468192     -000                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/articlecomments.class.php:7
    0.0609    4911912       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:54
    0.0609    4911912       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:49
    0.0609    4911912       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:44
    0.0608    4911912     -000                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/dao/model.class.php:39
    0.0606    4938272     -000                           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb-php4.inc.php) /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:2326
    0.0604    4942968       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb-time.inc.php:294
    0.0604    4942968       +0                             -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb-time.inc.php:294
    0.0560    4490720       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:108
    0.0560    4490720       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:106
    0.0560    4490720       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:105
    0.0560    4490720       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:104
    0.0560    4490720       +0                           -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:108
    0.0559    4490720       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:91
    0.0559    4490720       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:88
    0.0559    4490720       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:103
    0.0559    4490720       +0                           -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:91
    0.0558    4490632       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:79
    0.0558    4490632       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:78
    0.0558    4490632       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:77
    0.0557    4489944       +0                           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:46
    0.0556    4489848       +0                           -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/database/adodb/adodb.inc.php:46
    0.0396    3093248       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:9
    0.0396    3093248       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:10
    0.0396    3087584     -000                           -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configfilestorage.class.php:7
    0.0395    3093248       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:8
    0.0395    3093248       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:7
    0.0395    3093248       +0                             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/config/configabstractstorage.class.php:6
    0.0313    2243328       +0                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:13
    0.0313    2243312       +0                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:9
    0.0313    2243312       +0                     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/requestgenerator.class.php:11
    0.0229    1554152       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresourcestorage.class.php:11
    0.0229    1554152     -000           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/dao/galleryresourcestorage.class.php:10
    0.0206    1360824       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:49
    0.0206    1360824       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:48
    0.0205    1360824       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:47
    0.0205    1360824       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:46
    0.0205    1360824       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:41
    0.0205    1360824       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:40
    0.0205    1360824       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:39
    0.0204    1360824       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:38
    0.0204    1360776       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:36
    0.0204    1360776       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:30
    0.0204    1360776       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:23
    0.0203    1360776       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:18
    0.0203    1360776       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:17
    0.0203    1360776       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:16
    0.0203    1360776       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:15
    0.0203    1360776       +0           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/gallery/galleryconstants.php:14
    0.0117     778824       +0         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:27
    0.0117     778824     -000         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/controller/controller.class.php:26
    0.0095     664800       +0             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:9
    0.0095     664800       +0             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:8
    0.0095     664800     -000             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/net/request.class.php:7
    0.0061     464016     -000                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/file/file.class.php:15
    0.0040     286392     -000               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/class/logger/logger/logger.class.php:9
    0.0006      29504       +0     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.0.1/index.php:9
-------------- next part --------------
    0.1097    5292440  +594912                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php:19
    0.0754    3768216  +550368           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/articles.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:37
    0.1750    6856008  +295136                 -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/phpsniff/phpSniff.core.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/phpsniff/phpSniff.class.php:22
    0.1671    6487272  +260880                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/kses.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/textfilter.class.php:12
    0.0663    2974272  +245248               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/users.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogs.class.php:5
    0.0966    4530376  +244496               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/articlecomments.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:45
    0.0636    2674104  +234776             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogs.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:6
    0.0368    1705744  +191568                 -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:4
    0.1610    5887328  +182088               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/rawrequestgenerator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:88
    0.1648    6226392  +172624                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/textfilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:14
    0.0854    4130408  +169688               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locale.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locales.class.php:5
    0.1632    6053768  +166440                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/rawrequestgenerator.class.php:3
    0.0289    1065128  +153424     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:13
    0.0676    3117216  +142944                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userpermissions.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/users.class.php:5
    0.0322    1334760  +137576           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/config.class.php:101
    0.1115    5453832  +133640                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templatesetstorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:195
    0.0573    2140824  +113664               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/defaultview.class.php:3
    0.0560    2003632  +108696             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:3
    0.0305    1201168  +105968     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:14
    0.0603    2369616  +100536                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:4
    0.0192     405064   +98696               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:5
    0.0550    1894936   +96504           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:117
    0.0331    1429600   +94840             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configfilestorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:4
    0.0913    4288296   +93384               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:91
    0.0984    4620400   +92600             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/referers.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:243
    0.0838    3960720   +81576             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locales.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php:483
    0.0589    2268920   +73136                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:3
    0.1123    5524952   +71120                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templatesets.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templatesetstorage.class.php:7
    0.0237     734016   +68352       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:4
    0.0016     108184   +64880       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/blogcontroller.class.php:3
    0.0245     798448   +64432       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:5
    0.0613    2433704   +63968                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpcache.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:5
    0.0580    2195784   +54960                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:3
    0.0642    2728912   +54808               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogs.class.php:3
    0.0260     890960   +54408     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userinfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:12
    0.0199     459400   +54336                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/misc/glob.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:12
    0.1360    5609504   +51392               -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1017
    0.0763    3817336   +51080             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/forms/formvalidator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/action.class.php:74
    0.0211     543704   +49216           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/debug.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:28
    0.0230     665664   +46864     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:11
    0.0220     590592   +46816         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/action.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:19
    0.0337    1474480   +44880               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configabstractstorage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configfilestorage.class.php:5
    0.1676    6532040   +44768                     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/stringutils.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/textfilter.class.php:13
    0.0039     286408   +44040               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:4
    0.0029     205048   +42784           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:27
    0.0033     242368   +37320             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:3
    0.0349    1514176   +33296               -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:48
    0.0704    3217848   +32840           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:36
    0.0293    1095104   +29976       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogsettings.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php:4
    0.0224     620056   +29464         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:20
    0.0203     487544   +29400             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:5
    0.0004      29368   +29368   -> {main}() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:0
    0.0023     162176   +28152           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:25
    0.1590    5712048   +27856             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php:434
    0.1103    5320192   +27448                 -> templateservice->_gettemplatefileinfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:170
    0.1309    5551008   +26056                       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templateset.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templatesets.class.php:4
    0.0020     134024   +25840         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:18
    0.1037    4673792   +24560                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:167
    0.0988    4644576   +24176               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/referer.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/referers.class.php:5
    0.1726    6560872   +24088               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/phpsniff/phpSniff.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:303
    0.1040    4697528   +23736                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:3
    0.0564    2027160   +23528             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/defaultview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:4
    0.0342    1492408   +23416             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:5
    0.1500    5654824   +22608                   -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1607
    0.0043     306320   +21136             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:4
    0.0262     911704   +20744       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/database/dbobject.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userinfo.class.php:3
    0.0904    4194912   +19992               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/commentfilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:90
    0.0479    1794456   +19784       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:260
    0.0249     820576   +19144         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/properties.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessioninfo.class.php:3
    0.0684    3158504   +18768                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/status/genericstatuslist.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userstatus.class.php:3
    0.1492    5627384   +17656                   -> fclose() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1768
    0.1758    6879320   +17504               -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:317
    0.0692    3182432   +17160             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/errorview.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:7
    0.0252     836368   +15792         -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/config.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessioninfo.class.php:4
    0.0678    3132072   +14856                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userpermission.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userpermissions.class.php:4
    0.0768    3835520   +14688                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/validator/validator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/validator/emptyvalidator.class.php:3
    0.1577    5683392   +14472           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/xml/rssparser/rssparser.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:188
    0.0810    3879992   +14256                         -> basename() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:140
    0.0900    4174920   +13888                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelineresult.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinefilter.class.php:5
    0.0008      43304   +13760     -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/blogcontroller.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:10
    0.0422    1754496   +13528                 -> set_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:645
    0.0385    1723784   +12992                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:141
    0.1509    5667800   +12984                     -> require_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1669
    0.0897    4161032   +12464                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinefilter.class.php:4
    0.0425    1758480   +12352             -> _internalerrorhandler() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:30
    0.1572    5668904   +11736           -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/misc/version.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:187
    0.0770    3847144   +11624                   -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/validator/validation.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/validator/validator.class.php:46
    0.1319    5552552   +11560                 -> cachedtemplate->cachedtemplate() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:176
    0.0894    4148568   +10680                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinefilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/nullpipelinefilter.class.php:3
    0.0430    1767616    +9824                     -> basename() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:140
    0.0802    3867328    +9816                     -> set_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:645
    0.1493    5628664    +9648                 -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:54
    0.0535    1799504    +9328       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/actioninfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:296
    0.0387    1732784    +9000                               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/appender.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:3
    0.0869    4133176    +8936                     -> set_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:645
    0.0681    3139736    +8192                 -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userstatus.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/users.class.php:7
    0.0688    3165176    +7880               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogstatus.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogs.class.php:7
    0.0616    2439328    +7344               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/defaultview.class.php:5
    0.0205     494488    +6944               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/layout.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:3
    0.0877    4131640    +6880                         -> basename() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:140
    0.0804    3865520    +6560                 -> _internalerrorhandler() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:30
    0.1338    5570728    +6320                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:312
    0.0462    1778608    +6288         -> include(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controllermap.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/blogcontroller.class.php:69
    0.1333    5561592    +5928                 -> templateservice->_configuretemplatesettings() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:184
    0.0892    4137888    +5928               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/nullpipelinefilter.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:89
    0.1751    6860336    +4328               -> defaultview->sendcontenttype() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:309
    0.0409    1740392    +4152                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/nullappender.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:141
    0.0374    1709136    +4024                             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/config/logging.properties.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:26
    0.1679    6531208    +3920               -> rawrequestgenerator->rawrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:89
    0.0458    1772144    +3880       -> httpvars::getsession() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:43
    0.0765    3820832    +3496               -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/validator/emptyvalidator.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/forms/formvalidator.class.php:10
    0.0246     801432    +2984       -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessioninfo.class.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:6
    0.0793    3855520    +2056                   -> cache_lite->cache_lite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:17
    0.1018    4643304    +1928         -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:65
    0.0995    4642960    +1920                     -> cache_lite->cache_lite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:17
    0.1348    5559648    +1840                     -> cache_lite->cache_lite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:17
    0.1004    4644056    +1840                   -> cache_lite->cache_lite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:17
    0.0862    4124048    +1840                   -> cache_lite->cache_lite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:17
    0.0698    3184760    +1808       -> defaultaction->defaultaction() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:302
    0.1335    5564336    +1656                   -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:302
    0.1033    4649232    +1656               -> templateservice->cachedtemplate() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:70
    0.1316    5540704    +1600                   -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:210
    0.1765    6881664    +1520             -> defaultview->getsmartyviewid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:190
    0.1753    6862568    +1488                   -> get_class() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:104
    0.0413    1740856    +1488                 -> cache_lite->cache_lite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:17
    0.1770    6883672    +1472                 -> _internalerrorhandler() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:1191
    0.0829    3879144    +1424           -> pluginmanager->setuserinfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:59
    0.1494    5630016    +1352                 -> array_keys() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:72
    0.1688    6533856    +1336             -> requestgenerator::getrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php:436
    0.1586    5684192    +1336           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:216
    0.1030    4646688    +1336               -> bloginfo->getsettings() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:66
    0.0447    1769224    +1328             -> eval('$this->_scheme = $parts["scheme"];') /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:68
    0.1330    5555552    +1216                 -> cachedtemplate->settemplatedir() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:178
    0.0794    3856672    +1152                     -> in_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:262
    0.1585    5683688    +1048             -> include_once(/home/benjamin/projects/plog/plog/branches/plog-1.1-ben/version.php) /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/misc/version.class.php:30
    0.0469    1774864    +1032       -> pluginmanager->pluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:118
    0.0454    1769384    +1024             -> eval('$this->_scheme = $parts["scheme"];') /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:68
    0.0871    4125784     +976                 -> _internalerrorhandler() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:30
    0.0775    3849856     +936             -> formvalidator->formvalidator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/action.class.php:89
    0.0771    3848032     +888             -> defaultaction->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/action.class.php:76
    0.0310    1196960     +848           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/config.class.php:92
    0.1494    5630848     +832                 -> cachedtemplate->_fetch_resource_info() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:74
    0.1496    5632312     +704                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.0465    1774880     +680         -> resourceclassloader::getloader() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:168
    0.1510    5668136     +672                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:34
    0.0695    3183056     +624           -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:110
    0.1338    5571344     +616                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1334    5562512     +600                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:298
    0.1689    6534432     +576               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:69
    0.1756    6862616     +568                   -> get_class() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:104
    0.0377    1708896     +552                           -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:110
    0.0388    1732600     +544                               -> appender::appender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:39
    0.0996    4643488     +528                       -> in_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:262
    0.0788    3851904     +512               -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0371    1703872     +512                       -> loggermanager->loggermanager() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:177
    0.1582    5682552     +504           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:213
    0.1537    5657080     +504       -> defaultview->render() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:328
    0.1351    5560344     +504             -> locale->getcharset() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:37
    0.1030    4647176     +488               -> templateservice->templateservice() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:67
    0.0805    3866008     +488                   -> exception->exception() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:71
    0.0777    3850368     +488           -> httpvars::getsession() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:44
    0.0425    1758968     +488               -> exception->exception() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:71
    0.0372    1704704     +456                           -> loggerconfigloader->loggerconfigloader() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:97
    0.0382    1710768     +448                             -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:135
    0.1770    6884104     +432                   -> exception->exception() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:71
    0.0792    3853032     +432                 -> cache->cache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:61
    0.0391    1733336     +432                           -> loggermanager->addlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:119
    0.0808    3865392     +408                     -> loggedmessage->loggedmessage() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:151
    0.1753    6861080     +400                 -> defaultview->classname() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:263
    0.0529    1790176     +400       -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:281
    0.0378    1709864     +400                               -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:112
    0.0407    1736240     +384                             -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:135
    0.0396    1734488     +384                             -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:135
    0.0917    4285528     +376                 -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:111
    0.0376    1708264     +376                           -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:100
    0.0372    1704248     +376                         -> loggermanager->_loadloggerconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:87
    0.1507    5654816     +368                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1495    5631520     +352                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1636
    0.0872    4126136     +352                   -> exception->exception() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:71
    0.1315    5538936     +344                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templatesetstorage.class.php:68
    0.1760    6879888     +328             -> defaultview->istemplatehttpcacheenabled() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:170
    0.1594    5705072     +320               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:69
    0.1333    5561912     +320                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:297
    0.0808    3865712     +320                       -> loggedmessage->getlocationinfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:37
    0.0778    3850688     +320           -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:47
    0.0378    1709360     +304                           -> loggerconfigloader->getloggerlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:113
    0.0372    1705008     +304                             -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:25
    0.0370    1702848     +304                 -> cache->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:16
    0.1362    5609392     +296                   -> is_dir() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1786
    0.1324    5554440     +296                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0994    4640608     +296                   -> cache->cache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:61
    0.0916    4285136     +296                 -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:111
    0.0379    1710160     +296                                 -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.0371    1703360     +296                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0916    4285344     +288                 -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:111
    0.1716    6536640     +280             -> configdbstorage->gettempfolder() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/xml/rssparser/rssparser.class.php:55
    0.1349    5559928     +280                       -> in_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:262
    0.1319    5552832     +280                   -> cachedtemplate->template() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:30
    0.0778    3850968     +280           -> defaultaction->_getbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:49
    0.1691    6534872     +272               -> rawrequestgenerator->rawrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:89
    0.1527    5667808     +272                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1518    5667808     +272                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1495    5631120     +272                   -> cachedtemplate->_parse_resource_name() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1558
    0.1767    6881928     +264                 -> error_reporting() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1137
    0.0859    4122032     +264               -> cachemanager::getcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locales.class.php:67
    0.0805    3866272     +264                     -> exception->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:24
    0.0402    1735600     +264                               -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:112
    0.0392    1733864     +264                               -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:112
    0.1770    6884360     +256                     -> exception->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:24
    0.1761    6880144     +256               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:145
    0.0474    1774944     +256       -> file::isdir() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:156
    0.1321    5553664     +248                     -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php:63
    0.0889    4131872     +248           -> pipeline->pipeline() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:67
    0.0699    3185008     +248         -> defaultaction->blogaction() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:29
    0.0398    1734824     +248                               -> appender::appender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:39
    0.1759    6879560     +240                 -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1593    5704752     +240               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:68
    0.1340    5558464     +240               -> defaultview->generatecacheid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:75
    0.0452    1768360     +240         -> url->url() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:79
    0.0444    1767896     +240         -> url->url() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:62
    0.1322    5553896     +232                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php:64
    0.1320    5553232     +232                       -> cachedtemplate->assign() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:580
    0.1700    6536360     +224           -> rssparser->rssparser() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:220
    0.0310    1197184     +224           -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/config.class.php:101
    0.1693    6535648     +216                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:68
    0.1681    6531984     +216                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:68
    0.0791    3852600     +216               -> cachemanager::getcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:80
    0.0371    1703064     +216                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0347    1480880     +216             -> cachemanager::getcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:52
    0.1682    6532192     +208                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:69
    0.1502    5654408     +208                     -> in_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:29
    0.1025    4644632     +200                 -> httpvars::getrequest() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:85
    0.1756    6862048     +192                 -> defaultview->classname() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:263
    0.1502    5654600     +192                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:37
    0.1028    4645144     +192               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:52
    0.0877    4131952     +192                           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:112
    0.0810    3880304     +192                           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:112
    0.0431    1767928     +192                       -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:112
    0.1531    5667800     +184                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:35
    0.1522    5667800     +184                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:35
    0.1513    5667800     +184                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:35
    0.1321    5553416     +184                         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:591
    0.1317    5540888     +184                   -> file::isdir() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:214
    0.0971    4528256     +184             -> pipelineresult->isvalid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:159
    0.0798    3857096     +184                     -> substr() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:618
    0.0459    1772328     +184       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:44
    0.0426    1759152     +184                 -> exception->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:24
    0.0253     836552     +184           -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/config.class.php:31
    0.1769    6882200     +176                 -> smarty_core_read_cache_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1189
    0.1580    5682224     +176                 -> smarty_core_read_cache_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1018
    0.1540    5657344     +176               -> smarty_core_read_cache_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1018
    0.1528    5668072     +176                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:34
    0.1519    5668072     +176                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:34
    0.1491    5609728     +176                   -> flock() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1742
    0.1020    4643656     +176               -> defaultview->view() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:48
    0.0940    4286232     +176             -> pipelinerequest->pipelinerequest() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:152
    0.0938    4286056     +176               -> pipelinerequest->gethttprequest() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/commentfilter.class.php:39
    0.0932    4286056     +176             -> pipelinerequest->pipelinerequest() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:152
    0.0931    4285880     +176             -> pipelineresult->isvalid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:159
    0.0921    4285528     +176             -> pipelinerequest->pipelinerequest() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:152
    0.0872    4126312     +176                     -> exception->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:24
    0.0868    4124240     +176                     -> flock() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:634
    0.0800    3857512     +176                     -> flock() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:634
    0.0697    3182872     +176         -> actioninfo->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/actioninfo.class.php:32
    0.0469    1775040     +176         -> pluginmanager->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:64
    0.0463    1774096     +176         -> blogcontroller->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:152
    0.0421    1740968     +176                 -> flock() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:634
    0.1752    6860656     +168                 -> httpvars::getsession() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:262
    0.1717    6536808     +168                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1694    6535976     +168                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1690    6534600     +168                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1682    6532360     +168                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1594    5705240     +168                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1363    5609744     +168                   -> basename() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1805
    0.1361    5609072     +168                 -> cachedtemplate->_get_auto_id() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:41
    0.1334    5562680     +168                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1322    5554064     +168                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1320    5553000     +168                     -> cachedtemplate->smarty() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php:60
    0.1315    5539104     +168                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0994    4640776     +168                     -> cache->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:16
    0.0792    3853200     +168                   -> cache->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:16
    0.0780    3851136     +168               -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0773    3848440     +168             -> request->request() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/action.class.php:78
    0.1771    6884624     +160                         -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1693    6535808     +160                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:69
    0.1692    6535432     +160                       -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1692    6535192     +160                   -> rawrequestgenerator->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:63
    0.1691    6535032     +160                 -> rawrequestgenerator->baserequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/rawrequestgenerator.class.php:23
    0.1680    6531768     +160                       -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1680    6531528     +160                   -> rawrequestgenerator->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:63
    0.1679    6531368     +160                 -> rawrequestgenerator->baserequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/rawrequestgenerator.class.php:23
    0.1031    4647496     +160                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1027    4644952     +160                         -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1022    4644216     +160                       -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1021    4643816     +160                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0994    4641040     +160                         -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0991    4640232     +160                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0991    4639968     +160                 -> referers->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:75
    0.0970    4528072     +160               -> pipelineresult->pipelineresult() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:61
    0.0806    3866536     +160                         -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0798    3856912     +160                     -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:616
    0.0793    3853464     +160                       -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0790    3852384     +160                   -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0789    3852144     +160               -> blogs->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:75
    0.0774    3848920     +160                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0774    3848680     +160                 -> request->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/properties.class.php:23
    0.0772    3848272     +160                 -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0411    1739368     +160                           -> loggermanager->addlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:119
    0.0403    1735760     +160                                 -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.0401    1735160     +160                           -> loggermanager->addlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:119
    0.0393    1734024     +160                                 -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.0377    1709056     +160                             -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.1341    5558616     +152                 -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:120
    0.0880    4131976     +152                       -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0813    3880352     +152                       -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0471    1775192     +152           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0433    1768288     +152                   -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0307    1201312     +144       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:16
    0.1510    5667464     +136                       -> strstr() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:26
    0.0402    1735312     +136                           -> loggerconfigloader->getloggerlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:113
    0.0392    1733496     +136                           -> loggerconfigloader->getloggerlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:113
    0.0310    1196112     +136         -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:102
    0.0309    1195976     +136       -> sessionmanager::setsessionsavepath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:30
    0.1509    5667328     +128                       -> ini_get() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:24
    0.1362    5609576     +128                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1798
    0.0429    1757672     +128                 -> loggedmessage->loggedmessage() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:151
    0.1029    4645264     +120               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:53
    0.0877    4131760     +120                         -> loggedmessage->_getparametersstring() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:144
    0.0810    3880112     +120                         -> loggedmessage->_getparametersstring() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:144
    0.0606    2369736     +120                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:13
    0.0432    1768048     +120                 -> loggedmessage->setparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:152
    0.0430    1767736     +120                     -> loggedmessage->_getparametersstring() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:144
    0.1326    5554464     +112                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1098    5292656     +112                       -> dirname() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:55
    0.1024    4644432     +112                 -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:82
    0.0642    2729024     +112                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:37
    0.0591    2269032     +112                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:24
    0.0339    1468992     +112               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configfilestorage.class.php:8
    0.1771    6884464     +104                       -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1751    6860440     +104                 -> header() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:170
    0.1317    5540992     +104                     -> is_dir() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:169
    0.1099    5292744     +104                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:58
    0.1023    4644320     +104                 -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:80
    0.1005    4644248     +104                     -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:267
    0.0996    4643592     +104                       -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:267
    0.0994    4640880     +104                       -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0991    4640072     +104                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0919    4285264     +104             -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:143
    0.0805    3866376     +104                       -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0794    3856776     +104                     -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:267
    0.0792    3853304     +104                     -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0464    1774200     +104         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:155
    0.0398    1734928     +104                               -> fileappender->openfp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:43
    0.0392    1733600     +104                             -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:77
    0.0388    1732704     +104                               -> fileappender->openfp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:43
    0.0378    1709464     +104                             -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:77
    0.0373    1705112     +104                               -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:201
    0.1767    6882024      +96                 -> array_push() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1180
    0.1531    5667896      +96                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:37
    0.1526    5667448      +96                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1636
    0.1522    5667896      +96                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:37
    0.1517    5667448      +96                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1636
    0.1514    5667896      +96                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:37
    0.1506    5654360      +96                     -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1636
    0.1503    5654696      +96                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1497    5632216      +96                   -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1567
    0.1311    5551104      +96                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templateset.class.php:6
    0.0869    4124240      +96                     -> get_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:638
    0.0866    4124064      +96                   -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:305
    0.0864    4123968      +96                   -> cache_lite->_setfilename() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:285
    0.0801    3857512      +96                     -> get_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:638
    0.0799    3857336      +96                   -> cache_lite->_read() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:306
    0.0799    3857240      +96                   -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:305
    0.0797    3856632      +96                   -> cache_lite->_setfilename() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:285
    0.0539    1798432      +96           -> file::exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:116
    0.0468    1774784      +96         -> resourceclassloader->addsearchfolder() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:178
    0.0448    1769320      +96             -> eval('$this->_host = $parts["host"];') /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:68
    0.0421    1740968      +96                 -> get_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:638
    0.0419    1740792      +96               -> cache_lite->_read() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:306
    0.0419    1740696      +96               -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:305
    0.0417    1740600      +96               -> cache_lite->_setfilename() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:285
    0.0369    1705840      +96                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:29
    0.0294    1095200      +96         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogsettings.class.php:9
    0.1762    6880232      +88                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1761    6880232      +88                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1754    6861856      +88                 -> httpvars::getsession() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:262
    0.1696    6536136      +88                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1695    6536136      +88                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1694    6535976      +88                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1685    6532520      +88                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1684    6532520      +88                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1683    6532360      +88                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1583    5682640      +88             -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/misc/version.class.php:29
    0.1538    5657168      +88         -> defaultview->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/defaultview.class.php:73
    0.1528    5667896      +88                     -> smarty_core_get_include_path() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1670
    0.1526    5667536      +88                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1652
    0.1526    5667352      +88                   -> cachedtemplate->_parse_resource_name() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1558
    0.1519    5667896      +88                     -> smarty_core_get_include_path() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1670
    0.1518    5667536      +88                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1652
    0.1517    5667352      +88                   -> cachedtemplate->_parse_resource_name() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1558
    0.1506    5654448      +88                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1652
    0.1505    5654264      +88                   -> cachedtemplate->_parse_resource_name() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1558
    0.1496    5631608      +88                     -> preg_match() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1652
    0.1363    5609848      +88                   -> crc32() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1806
    0.1347    5557808      +88                     -> cache->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:16
    0.1347    5557720      +88                   -> cache->cache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:61
    0.1336    5564424      +88                   -> file::exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:303
    0.1332    5555640      +88                 -> cachedtemplate->assign() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:181
    0.1329    5554424      +88                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1328    5554424      +88                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1325    5554440      +88                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1323    5554064      +88                       -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1029    4645352      +88                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.1020    4643480      +88             -> defaultview->smartyview() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:28
    0.1018    4643392      +88         -> defaultview->defaultview() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:69
    0.1014    4641464      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.1013    4641464      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.1011    4641464      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.1010    4641464      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.1008    4641464      +88           -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.1005    4644144      +88                     -> in_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:262
    0.1003    4642216      +88                   -> cache->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:16
    0.1003    4642128      +88                 -> cache->cache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:61
    0.0998    4643440      +88                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0975    4527800      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0974    4527800      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0969    4527912      +88               -> pipelinerequest->getbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:55
    0.0968    4527824      +88                 -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0944    4286320      +88                 -> bayesianfilter->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinefilter.class.php:37
    0.0944    4286232      +88               -> bayesianfilter->pipelinefilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:34
    0.0940    4286320      +88               -> pipelinerequest->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:29
    0.0936    4286320      +88                 -> commentfilter->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinefilter.class.php:37
    0.0936    4286232      +88               -> commentfilter->pipelinefilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/commentfilter.class.php:27
    0.0932    4286144      +88               -> pipelinerequest->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:29
    0.0929    4285880      +88                 -> nullpipelinefilter->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinefilter.class.php:37
    0.0928    4285792      +88               -> nullpipelinefilter->pipelinefilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/nullpipelinefilter.class.php:18
    0.0924    4285704      +88             -> nullpipelinefilter->nullpipelinefilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:153
    0.0921    4285616      +88               -> pipelinerequest->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:29
    0.0920    4285352      +88               -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0889    4131960      +88             -> pipeline->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:67
    0.0879    4131824      +88                     -> fileappender->getlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:156
    0.0875    4124760      +88                     -> loggedmessage->loggedmessage() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:151
    0.0863    4124136      +88                     -> in_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:262
    0.0861    4122208      +88                   -> cache->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:16
    0.0861    4122120      +88                 -> cache->cache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:61
    0.0824    3877808      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0812    3880200      +88                     -> fileappender->getlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:156
    0.0786    3851216      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0784    3851136      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0783    3851136      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0781    3851136      +88               -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0537    1798336      +88           -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:110
    0.0537    1798248      +88         -> class_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:246
    0.0530    1790264      +88         -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0484    1789776      +88         -> properties::getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:62
    0.0484    1789688      +88       -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:264
    0.0472    1775192      +88           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0465    1775056      +88             -> resourceclassloader->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:36
    0.0465    1774968      +88           -> resourceclassloader->resourceclassloader() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:57
    0.0432    1768136      +88                 -> fileappender->getlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:156
    0.0416    1740504      +88           -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:126
    0.0414    1740944      +88                   -> in_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:262
    0.0398    1734576      +88                             -> fileappender->fileappender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:142
    0.0390    1732904      +88                           -> logger->addappender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:118
    0.0390    1732816      +88                           -> logger->logger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:117
    0.0307    1201400      +88       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:17
    0.0024     162264      +88             -> set_error_handler() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/exception.class.php:94
    0.1692    6535272      +80                     -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1680    6531608      +80                     -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1336    5564504      +80                     -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:397
    0.1324    5554144      +80                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php:81
    0.1314    5538592      +80                     -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templatesetstorage.class.php:66
    0.1032    4647576      +80               -> defaultview->iscachingenabled() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:68
    0.1031    4647336      +80                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1030    4647256      +80                 -> templateservice->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:52
    0.1027    4644792      +80                       -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1026    4644712      +80                     -> request->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/properties.class.php:23
    0.1022    4644056      +80                     -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1022    4643976      +80                   -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/properties.class.php:23
    0.1022    4643896      +80                 -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:72
    0.0992    4640312      +80                 -> cachemanager::getcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:80
    0.0990    4639808      +80               -> referers->model() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/referers.class.php:25
    0.0797    3856712      +80                     -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:610
    0.0789    3852224      +80                 -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0789    3851984      +80             -> blogs->model() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:180
    0.0788    3851392      +80             -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:172
    0.0787    3851296      +80               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0785    3851216      +80               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0774    3848760      +80                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0773    3848520      +80               -> request->properties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:36
    0.0772    3848112      +80               -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0697    3182952      +80             -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0438    1768328      +80                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:89
    0.0429    1757752      +80                   -> loggedmessage->getlocationinfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:37
    0.0403    1735840      +80                           -> patternlayout->patternlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:113
    0.0394    1734104      +80                           -> patternlayout->patternlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:113
    0.0382    1710320      +80                           -> loggermanager->createappenderinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:114
    0.0380    1710240      +80                           -> patternlayout->patternlayout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:113
    0.0376    1708344      +80                           -> loggerconfigloader->getconfiguredloggers() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:108
    0.0308    1195840      +80       -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:201
    0.1695    6536048      +72                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:73
    0.1684    6532432      +72                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:73
    0.1503    5654808      +72                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.0968    4527736      +72               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:49
    0.0967    4530448      +72                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/articlecomments.class.php:5
    0.0885    4132008      +72                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:89
    0.0818    3880384      +72                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:89
    0.0455    1769456      +72             -> eval('$this->_host = $parts["host"];') /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:68
    0.0343    1492480      +72               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:6
    0.0212     543776      +72             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/debug.php:15
    0.0006      29544      +72     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:7
    0.1719    6536784      +64           -> smartyview::render() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:223
    0.0456    1769520      +64             -> eval('$this->_path = $parts["path"];') /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:68
    0.0337    1474544      +64                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configabstractstorage.class.php:5
    0.0005      29432      +64     -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:6
    0.1362    5609448      +56                   -> urlencode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1798
    0.0448    1769376      +56             -> eval('$this->_path = $parts["path"];') /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:68
    0.1752    6860488      +48               -> defaultview->getsessionvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:313
    0.1495    5631168      +48                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1634
    0.1363    5609896      +48                   -> substr() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1809
    0.1328    5554336      +48                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:32
    0.1098    5292488      +48                       -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:44
    0.0914    4288344      +48                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:15
    0.0798    3857144      +48                     -> substr() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:618
    0.0689    3165224      +48                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogstatus.class.php:5
    0.0411    1739208      +48                           -> logger->addappender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:118
    0.0400    1735000      +48                           -> logger->addappender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:118
    0.0043     306368      +48               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:3
    0.0797    3856752      +40                     -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:610
    0.0436    1768328      +40                   -> loggedmessage->getparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.0345    1492776      +40               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:20
    0.0344    1492616      +40               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:12
    0.0343    1492552      +40               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:9
    0.0006      29472      +40     -> dirname() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:7
    0.1510    5668168      +32                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:34
    0.1098    5292520      +32                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:45
    0.0883    4132008      +32                       -> loggedmessage->getparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.1753    6860680      +24                   -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:74
    0.1503    5654720      +24                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1361    5609096      +24                 -> cachedtemplate->_get_auto_filename() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:42
    0.1332    5555664      +24                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:591
    0.1098    5292544      +24                       -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:54
    0.0881    4131968      +24                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:84
    0.0881    4131944      +24                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:83
    0.0816    3880376      +24                       -> loggedmessage->getparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.0814    3880344      +24                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:84
    0.0814    3880320      +24                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:83
    0.0809    3865736      +24                         -> function_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:130
    0.0776    3849880      +24                 -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0690    3165272      +24                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogstatus.class.php:7
    0.0689    3165248      +24                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogstatus.class.php:6
    0.0685    3157296      +24                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userstatus.class.php:7
    0.0685    3157272      +24                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userstatus.class.php:6
    0.0615    2431984      +24                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:12
    0.0435    1768280      +24                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:84
    0.0434    1768256      +24                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:83
    0.0429    1757776      +24                     -> function_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:130
    0.0426    1759176      +24                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0402    1735336      +24                             -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:77
    0.0399    1734952      +24                                 -> fopen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:57
    0.0391    1733360      +24                           -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:110
    0.0389    1732728      +24                                 -> fopen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:57
    0.0383    1710792      +24                               -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:201
    0.0345    1492736      +24               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:19
    0.0344    1492680      +24               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:15
    0.0344    1492640      +24               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:13
    0.0343    1492512      +24               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:8
    0.1592    5712080      +16               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:12
    0.1591    5712064      +16               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:5
    0.1573    5668920      +16             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/misc/version.class.php:6
    0.1503    5654736      +16                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:37
    0.1363    5609760      +16                   -> urlencode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1805
    0.0882    4131976      +16                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:86
    0.0856    4130456      +16                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locale.class.php:40
    0.0856    4130440      +16                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locale.class.php:35
    0.0856    4130424      +16                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locale.class.php:25
    0.0816    3880352      +16                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:86
    0.0787    3851312      +16             -> sessioninfo->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:167
    0.0592    2269080      +16                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:36
    0.0592    2269064      +16                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:30
    0.0592    2269048      +16                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:25
    0.0436    1768288      +16                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:86
    0.0430    1757792      +16                     -> debug_backtrace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:132
    0.0406    1735856      +16                                 -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.0401    1735176      +16                             -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.0345    1492792      +16               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:21
    0.0344    1492712      +16               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:18
    0.0344    1492696      +16               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:17
    0.0344    1492656      +16               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:14
    0.0343    1492576      +16               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:11
    0.0343    1492560       +8               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:10
    0.0343    1492488       +8               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:7
    0.0040     285184       +8               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:12
    0.0040     285176       +8               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:11
    0.0040     285168       +8               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:10
    0.1773    6883056       +0                 -> error_reporting() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1240
    0.1773    6883056       +0                 -> array_pop() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1242
    0.1772    6883056       +0                 -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1199
    0.1772    6883056     -000                 -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1191
    0.1767    6881928       +0                 -> error_reporting() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1137
    0.1765    6881664       +0               -> smarty::fetch() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:48
    0.1765    6881664       +0             -> cachedtemplate->fetch() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:190
    0.1764    6880144       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:591
    0.1763    6880144       +0             -> cachedtemplate->assign() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:187
    0.1763    6880144     -000             -> properties->getasarray() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:187
    0.1762    6880232       +0                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1762    6880144     -000               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:146
    0.1761    6880232       +0                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1760    6879888       +0               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:143
    0.1757    6861816     -000               -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:317
    0.1755    6861856       +0                   -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:74
    0.1754    6861768     -000               -> defaultview->getsessionvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:317
    0.1720    6536784       +0             -> view::render() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:163
    0.1719    6536720       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1718    6536720       +0           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:220
    0.1718    6536720     -000             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/xml/rssparser/rssparser.class.php:55
    0.1717    6536808       +0                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1716    6536640       +0               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configabstractstorage.class.php:186
    0.1700    6536360       +0             -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/xml/rssparser/rssparser.class.php:54
    0.1699    6536136       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1699    6536136       +0           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:219
    0.1698    6536136       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1698    6536136       +0           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:218
    0.1698    6536136       +0           -> bloginfo->getsettings() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:219
    0.1697    6536136       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1696    6536136       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1696    6536048     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:85
    0.1695    6535976       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1694    6535976       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1694    6535888     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:70
    0.1690    6534600       +0                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1689    6533856       +0               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:68
    0.1687    6532520       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1687    6532520       +0           -> bloginfo->getblogrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:218
    0.1686    6532520       +0           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:217
    0.1685    6532520       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1685    6532432     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:85
    0.1684    6532520       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1683    6532360       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1683    6532272     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:70
    0.1682    6532360       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1677    6527288     -000                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/baserequestgenerator.class.php:16
    0.1594    5705240       +0                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1593    5704512     -000             -> requestgenerator::getrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php:436
    0.1592    5712080       +0               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:14
    0.1592    5712080       +0               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:13
    0.1592    5712064       +0               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:9
    0.1592    5712064       +0               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:11
    0.1591    5712064       +0               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/requestgenerator.class.php:7
    0.1587    5684192       +0           -> bloginfo->getblogrequestgenerator() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:217
    0.1586    5684192       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1585    5682856       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1585    5682856     -000           -> defaultview->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:214
    0.1584    5682640       +0               -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:203
    0.1583    5682640       +0               -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:201
    0.1583    5682552       +0           -> version::getversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:214
    0.1582    5682552       +0             -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1581    5682048     -000           -> bloginfo->getlocale() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:213
    0.1579    5682048       +0               -> cachedtemplate->is_cached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:59
    0.1578    5682048       +0             -> defaultview->iscachingenabled() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:99
    0.1578    5682048       +0             -> cachedtemplate->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:100
    0.1578    5682048     -000           -> defaultview->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:190
    0.1574    5668920       +0             -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/misc/version.class.php:9
    0.1573    5668920       +0             -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/misc/version.class.php:8
    0.1569    5657168     -000         -> blogview::render() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/defaultview.class.php:82
    0.1539    5657168       +0           -> cachedtemplate->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:100
    0.1539    5657168       +0             -> cachedtemplate->is_cached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:59
    0.1538    5657168       +0           -> defaultview->iscachingenabled() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:99
    0.1538    5657080       +0         -> bloginfo->getsettings() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/defaultview.class.php:67
    0.1537    5656576       +0       -> defaultaction->getview() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:320
    0.1536    5656576       +0         -> formvalidator->setformisvalid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/action.class.php:322
    0.1535    5656576     -000       -> defaultaction->setsuccess() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:309
    0.1533    5667896       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1533    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:40
    0.1532    5667896       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1532    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1532    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1532    5667896       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:38
    0.1532    5667896       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:37
    0.1531    5667896       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:38
    0.1530    5667616       +0                   -> smarty_core_is_secure() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1608
    0.1530    5667616       +0                   -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1567
    0.1529    5667896       +0                     -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1529    5667896     -000                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1529    5667616     -000                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1566
    0.1528    5668072       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:34
    0.1526    5667352       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1634
    0.1525    5667264     -000                 -> cachedtemplate->_fetch_resource_info() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:74
    0.1524    5667896       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1524    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:40
    0.1524    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1523    5667896       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1523    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1523    5667896       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:38
    0.1523    5667896       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:38
    0.1523    5667896       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:37
    0.1522    5667616       +0                   -> smarty_core_is_secure() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1608
    0.1521    5667616       +0                   -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1567
    0.1521    5667616     -000                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1566
    0.1520    5667896       +0                     -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1520    5667896     -000                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1519    5668072       +0                       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:34
    0.1517    5667352       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1634
    0.1516    5667264     -000                 -> cachedtemplate->_fetch_resource_info() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:74
    0.1515    5667896       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1515    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:40
    0.1515    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1515    5667896       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:38
    0.1514    5667896       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1514    5667896       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1514    5667896       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:38
    0.1514    5667896       +0                     -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:37
    0.1513    5667616       +0                   -> smarty_core_is_secure() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1608
    0.1512    5667616       +0                   -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1567
    0.1512    5667616     -000                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1566
    0.1511    5667896       +0                     -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1511    5667896     -000                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1510    5667464       +0                       -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.get_include_path.php:30
    0.1509    5667200     -000                     -> smarty_core_get_include_path() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1670
    0.1506    5654264       +0                     -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1634
    0.1505    5654176     -000                 -> cachedtemplate->_fetch_resource_info() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:74
    0.1504    5654808       +0                     -> strncmp() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:39
    0.1504    5654808       +0                     -> strlen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:40
    0.1503    5654736       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:38
    0.1502    5654600       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:38
    0.1502    5654408       +0                     -> realpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.is_secure.php:35
    0.1501    5654200     -000                   -> smarty_core_is_secure() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1608
    0.1497    5632120     -000                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1566
    0.1496    5632312       +0                     -> is_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1663
    0.1493    5619016     -000                 -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:51
    0.1492    5609728       +0                   -> fread() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1745
    0.1491    5609728       +0                   -> filesize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1745
    0.1490    5609552       +0                   -> fopen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1739
    0.1364    5609552       +0                   -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1736
    0.1364    5609552     -000                 -> cachedtemplate->_read_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/core/core.read_cache_file.php:43
    0.1360    5608904     -000               -> smarty_core_read_cache_file() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:1018
    0.1354    5558112       +0             -> cachedtemplate->is_cached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:59
    0.1353    5558112       +0           -> defaultview->iscachingenabled() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:99
    0.1353    5558112       +0           -> cachedtemplate->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:100
    0.1353    5558112     -000         -> defaultview->iscached() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:74
    0.1352    5560344       +0             -> defaultview->setcharset() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:37
    0.1351    5559840     -000             -> bloginfo->getlocale() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:36
    0.1350    5559904       +0             -> pluginmanager->setbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:33
    0.1350    5559904     -000             -> pluginmanager::getpluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:32
    0.1349    5559928       +0                       -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:267
    0.1347    5557808       +0                       -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1347    5557808       +0                         -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1345    5557632       +0                 -> cachemanager::getcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:80
    0.1344    5557632       +0                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1343    5557632       +0                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1343    5557632       +0                 -> articles->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:75
    0.1343    5557632       +0               -> articles->model() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/articles.class.php:29
    0.1342    5557632     -000             -> articles->articles() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/blogview.class.php:30
    0.1341    5558616       +0                 -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:120
    0.1340    5558224     -000               -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:74
    0.1338    5571344       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1337    5564408       +0                   -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:306
    0.1336    5564408     -000                     -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:399
    0.1334    5562680       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1331    5555552       +0                   -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:591
    0.1331    5555552       +0                 -> cachedtemplate->assign() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:180
    0.1329    5554424       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1329    5554336     -000                   -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:33
    0.1329    5554336     -000                   -> cachedtemplate->register_block() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:37
    0.1328    5554424       +0                     -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1327    5554288     -000                   -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/cachedtemplate.class.php:31
    0.1326    5554464       +0                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1326    5554352     -000                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php:83
    0.1325    5554440       +0                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1325    5554352     -000                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php:82
    0.1324    5554440       +0                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1323    5554064       +0                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1323    5553976     -000                     -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/template.class.php:76
    0.1322    5554064       +0                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1316    5539104       +0                       -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1314    5538512     -000                   -> templatesetstorage::getbasetemplatefolder() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templateservice.class.php:208
    0.1313    5543376     -000                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templatesetstorage.class.php:9
    0.1311    5551104       +0                         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/templatesets/templateset.class.php:7
    0.1099    5292744       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:61
    0.1099    5292744       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:60
    0.1099    5292744       +0                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:59
    0.1099    5292640     -000                       -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/template/smarty/Smarty.class.php:55
    0.1032    4647576       +0               -> blogsettings->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:70
    0.1029    4645352       +0                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.1026    4644632       +0                 -> request->request() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:85
    0.1026    4644632       +0                   -> request->properties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:36
    0.1025    4644632       +0                   -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:140
    0.1024    4644432       +0                   -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1024    4644320       +0                   -> properties->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:98
    0.1021    4643656       +0                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1020    4643656       +0                 -> defaultview->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:70
    0.1019    4643392       +0           -> defaultview->blogview() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/defaultview.class.php:22
    0.1017    4641376       +0         -> bloginfo->getsettings() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:60
    0.1017    4641376       +0         -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:57
    0.1016    4641376     -000       -> defaultaction->perform() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:308
    0.1015    4641464       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.1015    4641464       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1015    4641464       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1014    4641464       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.1014    4641464       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1014    4641376     -000         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:46
    0.1013    4641464       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1013    4641376     -000         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:45
    0.1012    4641464       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.1012    4641464       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1012    4641464       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1011    4641464       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.1011    4641464       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1011    4641376     -000         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:38
    0.1010    4641464       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1010    4641376     -000         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:37
    0.1009    4641464       +0           -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.1009    4641464       +0           -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1009    4641464       +0           -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.1008    4641376       +0         -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/defaultaction.class.php:35
    0.1008    4641376       +0       -> defaultaction->validate() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:307
    0.1007    4641376     -000       -> defaultaction->setpreviousaction() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:303
    0.1003    4642216       +0                     -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1003    4642216       +0                       -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1002    4642040       +0               -> cachemanager::getcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:80
    0.1001    4642040       +0                   -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.1000    4642040       +0                 -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.1000    4642040       +0               -> articles->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:75
    0.1000    4642040       +0             -> articles->model() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/articles.class.php:29
    0.0999    4643352     -000             -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:246
    0.0999    4642040     -000           -> articles->articles() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:85
    0.0998    4643440       +0                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.0997    4643352       +0               -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/referers.class.php:28
    0.0997    4643352     -000               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/referers.class.php:27
    0.0990    4643464     -000               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/referers.class.php:8
    0.0990    4639728     -000             -> referers->referers() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:245
    0.0976    4527800       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0976    4527800       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0976    4527800       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0975    4527712     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:239
    0.0974    4527800       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0974    4527800       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0974    4527800       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0973    4527712       +0             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:238
    0.0973    4527712       +0           -> defaultaction->_updatereferrer() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:83
    0.0972    4527712     -000           -> pipelineresult->isvalid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:72
    0.0970    4527912       +0               -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:60
    0.0969    4527912       +0               -> pipelinerequest->gethttprequest() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:56
    0.0969    4527824       +0                 -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.0967    4530448       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/articlecomments.class.php:6
    0.0967    4527664     -000               -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:47
    0.0945    4285880     -000             -> bayesianfilter->filter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:155
    0.0944    4286320       +0                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0944    4286320       +0                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0943    4286144     -000             -> bayesianfilter->bayesianfilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:153
    0.0942    4286320       +0                 -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/properties.class.php:23
    0.0942    4286320       +0                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0942    4286320       +0                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0941    4286320       +0               -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:32
    0.0941    4286320       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:31
    0.0940    4286320       +0                 -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0940    4286320       +0                   -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0939    4286056       +0               -> pipelineresult->pipelineresult() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/commentfilter.class.php:41
    0.0939    4286056       +0             -> pipelineresult->isvalid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:159
    0.0938    4286056       +0               -> properties->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/commentfilter.class.php:40
    0.0937    4285880     -000             -> commentfilter->filter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:155
    0.0936    4286320       +0                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0936    4286320       +0                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0935    4286144       +0             -> commentfilter->commentfilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:153
    0.0934    4286144       +0               -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:32
    0.0934    4286144       +0                 -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/properties.class.php:23
    0.0934    4286144       +0                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0934    4286144       +0                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0933    4286144       +0                   -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0933    4286144       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:31
    0.0932    4286144       +0                 -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0931    4285704       +0               -> pipelineresult->pipelineresult() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/nullpipelinefilter.class.php:26
    0.0930    4285704     -000             -> nullpipelinefilter->filter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:155
    0.0929    4285880       +0                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0929    4285880       +0                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0923    4285616       +0               -> properties->properties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:32
    0.0923    4285616       +0                 -> properties->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/properties.class.php:23
    0.0923    4285616       +0                   -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0923    4285616       +0                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0922    4285616       +0                   -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0922    4285616       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipelinerequest.class.php:31
    0.0921    4285616       +0                 -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0920    4285352       +0               -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.0920    4285264       +0             -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:144
    0.0918    4285160     -000           -> pipeline->process() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:68
    0.0917    4285152     -000               -> pipeline->registerfilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:95
    0.0916    4285056     -000               -> pipeline->registerfilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:94
    0.0915    4284840     -000               -> pipeline->registerfilter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:93
    0.0914    4288296       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:6
    0.0914    4288296       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/bayesianfilter.class.php:14
    0.0905    4194912       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/commentfilter.class.php:6
    0.0890    4131960       +0             -> pipeline->_registerdefaultfilters() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/security/pipeline.class.php:75
    0.0890    4131960       +0                 -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0889    4131960       +0               -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0888    4131624       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locales.class.php:82
    0.0887    4131624     -000               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locales.class.php:78
    0.0886    4132008       +0                       -> fwrite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:79
    0.0886    4132008       +0                     -> fileappender->write() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:158
    0.0885    4132008       +0                       -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:91
    0.0885    4132008       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:91
    0.0885    4132008       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:90
    0.0884    4131936       +0                       -> strtoupper() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0884    4131936       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0884    4131936       +0                       -> patternlayout->getprioritynumber() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0883    4132008       +0                       -> strtoupper() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.0883    4132008       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.0883    4131936     -000                       -> loggedmessage->getparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0882    4131960       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:85
    0.0882    4131960       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:59
    0.0882    4131960       +0                         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:51
    0.0881    4131960     -000                       -> loggedmessage->getmessage() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:85
    0.0881    4131936     -000                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0881    4131920     -000                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:82
    0.0880    4131976       +0                       -> strftime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0880    4131824       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:80
    0.0879    4131824       +0                     -> patternlayout->format() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:157
    0.0878    4131736     -000                     -> loggedmessage->setparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:152
    0.0876    4124760       +0                         -> function_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:130
    0.0876    4124760       +0                         -> debug_backtrace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:132
    0.0875    4124760       +0                       -> loggedmessage->getlocationinfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:37
    0.0874    4124672       +0                   -> logger->log() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:115
    0.0874    4124672       +0                     -> logger->isloggable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:149
    0.0874    4124672     -000                 -> logger->info() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:30
    0.0873    4126312       +0                         -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0872    4126312       +0                       -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0871    4124808       +0                   -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:313
    0.0870    4133176       +0                     -> flock() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:646
    0.0870    4133176       +0                     -> fclose() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:647
    0.0870    4124808     -000                   -> is_string() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:312
    0.0869    4124240       +0                     -> set_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:639
    0.0869    4124240       +0                     -> fread() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:644
    0.0868    4124240       +0                     -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:636
    0.0868    4124144     -000                     -> filesize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:637
    0.0867    4124064       +0                     -> fopen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:633
    0.0867    4124064       +0                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:305
    0.0867    4124064       +0                   -> cache_lite->_read() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:306
    0.0866    4123968       +0                     -> substr() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:618
    0.0866    4123968       +0                     -> substr() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:618
    0.0865    4123968       +0                     -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:616
    0.0865    4123968       +0                     -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:610
    0.0865    4123968       +0                     -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:610
    0.0864    4123872       +0                 -> cache_lite->get() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:28
    0.0864    4123872     -000               -> cache->getdata() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locales.class.php:68
    0.0863    4124136       +0                     -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:267
    0.0861    4122208       +0                     -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0861    4122208       +0                       -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0858    4121768       +0             -> locales::getlocale() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php:484
    0.0857    4125272     -000               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locales.class.php:7
    0.0857    4121768       +0               -> blogsettings->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php:120
    0.0857    4121768     -000             -> bloginfo->getsetting() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/bloginfo.class.php:484
    0.0856    4130424       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/locale/locale.class.php:30
    0.0829    3879144       +0           -> bloginfo->getlocale() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:62
    0.0828    3877720       +0           -> pluginmanager->setbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:58
    0.0828    3877720       +0           -> pluginmanager::getpluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:57
    0.0827    3877720       +0             -> sessioninfo->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:227
    0.0827    3877720       +0             -> sessioninfo->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:226
    0.0826    3877720       +0             -> sessioninfo->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:225
    0.0826    3877720       +0             -> date() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:222
    0.0826    3877720       +0             -> date() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:220
    0.0826    3877720     -000             -> date() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:218
    0.0825    3877808       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0825    3877808       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0825    3877808       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0824    3877720       +0             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:207
    0.0823    3877720       +0           -> sessioninfo->setvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:52
    0.0823    3877720       +0           -> defaultaction->checkdateparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:54
    0.0822    3877720     -000           -> bloginfo->getid() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:52
    0.0821    3879808     -000             -> bloginfo->getstatus() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:196
    0.0820    3880384       +0                       -> fwrite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:79
    0.0819    3880384       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:91
    0.0819    3880384       +0                     -> fileappender->write() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:158
    0.0818    3880384       +0                       -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:91
    0.0818    3880384       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:90
    0.0818    3880312       +0                       -> strtoupper() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0818    3880312       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0817    3880376       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.0817    3880312       +0                       -> patternlayout->getprioritynumber() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0817    3880312     -000                       -> loggedmessage->getparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0816    3880376       +0                       -> strtoupper() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.0815    3880336       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:85
    0.0815    3880336       +0                         -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:59
    0.0815    3880336       +0                         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:51
    0.0815    3880336     -000                       -> loggedmessage->getmessage() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:85
    0.0814    3880312     -000                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0814    3880296     -000                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:82
    0.0813    3880352       +0                       -> strftime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0813    3880200       +0                       -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:80
    0.0812    3880200       +0                     -> patternlayout->format() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:157
    0.0811    3880112     -000                     -> loggedmessage->setparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:152
    0.0809    3865736       +0                         -> debug_backtrace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:132
    0.0807    3864984       +0                   -> logger->log() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:115
    0.0807    3864984       +0                     -> logger->isloggable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:149
    0.0807    3864984     -000                 -> logger->info() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:30
    0.0803    3858960       +0                   -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:313
    0.0803    3858960     -000                   -> is_string() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:312
    0.0802    3867328       +0                     -> flock() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:646
    0.0802    3867328       +0                     -> fclose() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:647
    0.0801    3857512       +0                     -> set_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:639
    0.0801    3857512       +0                     -> fread() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:644
    0.0801    3857512       +0                     -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:636
    0.0801    3857416     -000                     -> filesize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:637
    0.0800    3857336       +0                     -> fopen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:633
    0.0799    3857240       +0                   -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:305
    0.0796    3856536       +0                 -> cache_lite->get() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:28
    0.0796    3856536       +0               -> cache->getdata() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogs.class.php:27
    0.0795    3856536     -000             -> blogs->getbloginfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:181
    0.0788    3851904       +0               -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.0787    3851296       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0787    3851296       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0786    3851128     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:145
    0.0785    3851216       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0785    3851216       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0784    3851136       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0784    3851136       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0784    3851048     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:144
    0.0783    3851136       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0783    3851048     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:143
    0.0782    3851136       +0               -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0782    3851136       +0               -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0782    3851136       +0               -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0781    3851136       +0               -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.0781    3851048     -000             -> request->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:142
    0.0780    3850968       +0             -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:130
    0.0780    3850968       +0             -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:131
    0.0777    3850368       +0             -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:74
    0.0776    3849880       +0                   -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0776    3849856       +0               -> formvalidator->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/data/forms/formvalidator.class.php:33
    0.0757    3766256     -000           -> defaultaction->action() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/action/blogaction.class.php:40
    0.0697    3182872       +0           -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0696    3182696     -000       -> actioninfo->actioninfo() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:301
    0.0693    3182432       +0               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/errorview.class.php:5
    0.0690    3165272       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/blogstatus.class.php:8
    0.0685    3157296       +0                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userstatus.class.php:8
    0.0685    3157248     -000                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userstatus.class.php:5
    0.0679    3131544       +0                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userpermissions.class.php:11
    0.0679    3131544       +0                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userpermissions.class.php:10
    0.0679    3131544     -000                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/userpermissions.class.php:9
    0.0643    2729024       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:52
    0.0643    2729024       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:47
    0.0643    2729024       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/dao/model.class.php:42
    0.0614    2431960       +0                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:11
    0.0614    2431960     -000                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/smartyview.class.php:10
    0.0592    2269080       +0                     -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/view/view.class.php:41
    0.0541    1798432       +0             -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:203
    0.0541    1798432       +0             -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:201
    0.0540    1798432       +0           -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:116
    0.0540    1798432       +0             -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:399
    0.0539    1798432       +0             -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:397
    0.0539    1798336       +0           -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:114
    0.0539    1798336       +0           -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:110
    0.0538    1798336       +0           -> strtolower() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:114
    0.0538    1798336       +0             -> file_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:399
    0.0538    1798336       +0           -> file::exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:116
    0.0538    1798336       +0             -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:397
    0.0537    1798248       +0         -> resourceclassloader->load() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:247
    0.0536    1798160     -000       -> blogcontroller->loadactionclass() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:299
    0.0531    1790264       +0         -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0531    1790264       +0         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0531    1790176     -000       -> blogcontroller->_getactionclassname() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:281
    0.0530    1790264       +0         -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0528    1789776       +0         -> stripslashes() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:67
    0.0485    1789776       +0         -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0484    1789776       +0         -> get_magic_quotes_gpc() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:66
    0.0483    1789600       +0               -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0482    1789600       +0         -> request->properties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:36
    0.0482    1789600       +0           -> request->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/properties.class.php:23
    0.0482    1789600       +0             -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0481    1794456       +0         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:9
    0.0481    1794456       +0         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:8
    0.0481    1794456       +0         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/request.class.php:7
    0.0481    1789600     -000       -> request->request() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:263
    0.0476    1774672       +0       -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:140
    0.0476    1774672       +0     -> blogcontroller->process() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:42
    0.0475    1774944       +0         -> is_dir() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:169
    0.0475    1774672     -000     -> httpvars::getrequest() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:42
    0.0474    1774688       +0       -> resourceclassloader::getloader() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:152
    0.0473    1774688     -000     -> pluginmanager->loadplugins() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:39
    0.0472    1775192       +0           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.0472    1775104     -000         -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:76
    0.0471    1775192       +0           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.0471    1775040       +0         -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:72
    0.0470    1775040       +0             -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0470    1775040       +0         -> config::getconfig() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/plugin/pluginmanager.class.php:66
    0.0469    1775040       +0           -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0468    1773832     -000     -> pluginmanager::getpluginmanager() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:38
    0.0467    1774968     -000           -> resourceclassloader->addsearchfolder() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/resourceclassloader.class.php:63
    0.0467    1774688     -000       -> blogcontroller->setactionfolderpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/blogcontroller.class.php:32
    0.0466    1775056       +0                 -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0465    1775056       +0               -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0464    1774096       +0             -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0463    1774096       +0           -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0463    1773920     -000       -> blogcontroller->controller() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/blogcontroller.class.php:31
    0.0460    1772320       +0       -> blogcontroller->_loadactionmaps() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/blogcontroller.class.php:25
    0.0460    1772320     -000     -> blogcontroller->blogcontroller() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:33
    0.0459    1772144       +0         -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:74
    0.0458    1768264       +0       -> session_start() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:38
    0.0457    1768568       +0         -> explode() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:85
    0.0457    1768568       +0         -> count() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:85
    0.0457    1768264     -000       -> session_name() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:37
    0.0456    1768568     -000         -> url->gethost() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:80
    0.0453    1768360       +0           -> url->_calculatefields() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:51
    0.0453    1768360       +0             -> parse_url() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:59
    0.0452    1768360       +0           -> url->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:47
    0.0452    1768360       +0             -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0452    1768360       +0               -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0451    1768120       +0             -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:239
    0.0451    1768120       +0           -> httpvars::getserver() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:269
    0.0450    1768424       +0         -> ini_set() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:67
    0.0450    1768424       +0         -> dirname() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:63
    0.0450    1768120       +0         -> httpvars::getbaseurl() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:78
    0.0450    1768120     -000       -> sessionmanager::setsessioncookiedomain() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:34
    0.0449    1768424     -000         -> url->getpath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:63
    0.0446    1767896       +0           -> url->_calculatefields() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:51
    0.0446    1767896       +0             -> parse_url() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:59
    0.0444    1767896       +0           -> url->object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/url.class.php:47
    0.0444    1767896       +0             -> loggermanager::getlogger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/object/object.class.php:60
    0.0444    1767896       +0               -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0443    1767656       +0             -> phpversion() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:239
    0.0443    1767656       +0           -> httpvars::getserver() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/httpvars.class.php:269
    0.0442    1767656       +0         -> httpvars::getbaseurl() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:61
    0.0442    1767656     -000       -> sessionmanager::setsessioncookiepath() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:33
    0.0441    1767744     -000           -> array_key_exists() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:138
    0.0440    1768328       +0                   -> fwrite() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/appender/fileappender.class.php:79
    0.0439    1768328       +0                   -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:91
    0.0439    1768328       +0                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:91
    0.0439    1768328       +0                 -> fileappender->write() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:158
    0.0438    1768328       +0                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:90
    0.0438    1768248       +0                   -> strtoupper() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0438    1768248       +0                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0437    1768328       +0                   -> strtoupper() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.0437    1768328       +0                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:87
    0.0437    1768248       +0                   -> patternlayout->getprioritynumber() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0437    1768248     -000                   -> loggedmessage->getparameter() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:88
    0.0436    1768272       +0                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:85
    0.0436    1768272       +0                     -> is_object() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:59
    0.0435    1768272       +0                     -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/loggedmessage.class.php:51
    0.0435    1768272     -000                   -> loggedmessage->getmessage() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:85
    0.0434    1768248     -000                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0434    1768232     -000                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:82
    0.0433    1768288       +0                   -> strftime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:81
    0.0433    1768136       +0                   -> str_replace() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:80
    0.0433    1768136       +0                 -> patternlayout->format() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:157
    0.0428    1757544       +0               -> logger->log() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:115
    0.0428    1757544       +0                 -> logger->isloggable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:149
    0.0427    1757544     -000             -> logger->info() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:30
    0.0426    1759176       +0                     -> loggermanager::getinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:192
    0.0423    1746128       +0               -> unserialize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:313
    0.0423    1746128     -000               -> is_string() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:312
    0.0422    1754496       +0                 -> flock() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:646
    0.0422    1754496       +0                 -> fclose() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:647
    0.0422    1740968       +0                 -> fread() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:644
    0.0421    1740968       +0                 -> set_magic_quotes_runtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:639
    0.0421    1740968       +0                 -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:636
    0.0421    1740872     -000                 -> filesize() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:637
    0.0420    1740792       +0                 -> fopen() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:633
    0.0419    1740696       +0               -> filemtime() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:305
    0.0418    1740600       +0                 -> substr() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:618
    0.0418    1740600       +0                 -> substr() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:618
    0.0418    1740600       +0                 -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:616
    0.0418    1740600       +0                 -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:610
    0.0417    1740600       +0                 -> md5() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:610
    0.0417    1740504       +0             -> cache_lite->get() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cache.class.php:28
    0.0416    1740504       +0           -> cache->getdata() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configdbstorage.class.php:130
    0.0415    1740416     -000         -> configdbstorage->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/net/http/session/sessionmanager.class.php:103
    0.0414    1740944       +0                   -> time() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:267
    0.0410    1739296     -000                             -> nullappender->appender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:142
    0.0410    1739160     -000                           -> logger->logger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:117
    0.0407    1736240       +0                               -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:203
    0.0407    1736240       +0                               -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:201
    0.0406    1735856       +0                           -> loggermanager->createappenderinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:114
    0.0405    1735840       +0                               -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:112
    0.0404    1735840       +0                             -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:99
    0.0404    1735840       +0                           -> loggerconfigloader->getloggerappender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:114
    0.0404    1735840       +0                             -> layout::layout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:28
    0.0401    1735160       +0                           -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:110
    0.0400    1734952       +0                           -> logger->logger() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:117
    0.0397    1734488       +0                               -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:203
    0.0397    1734488       +0                               -> clearstatcache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:201
    0.0396    1734104       +0                           -> loggermanager->createappenderinstance() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:114
    0.0395    1734104       +0                                 -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.0395    1734104       +0                             -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:99
    0.0395    1734104       +0                               -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:112
    0.0394    1734104       +0                           -> loggerconfigloader->getloggerappender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:114
    0.0394    1734104       +0                             -> layout::layout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:28
    0.0391    1733360       +0                             -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.0388    1732056     -000                             -> fileappender->fileappender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:142
    0.0383    1710792       +0                               -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:203
    0.0381    1710240       +0                                 -> loggerconfigloader->getvalue() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:66
    0.0381    1710240       +0                             -> loggerconfigloader->getloggerproperty() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:99
    0.0381    1710240       +0                               -> loggerconfigloader->getloggerproperties() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:112
    0.0380    1710240       +0                           -> loggerconfigloader->getloggerappender() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:114
    0.0380    1710240       +0                             -> layout::layout() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/layout/patternlayout.class.php:28
    0.0377    1708344       +0                             -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:52
    0.0377    1708344       +0                             -> array_keys() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:53
    0.0376    1707888       +0                             -> is_array() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:52
    0.0376    1707888       +0                             -> array_keys() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/config/loggerconfigloader.class.php:53
    0.0375    1707888     -000                           -> loggerconfigloader->getconfiguredloggers() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/loggermanager.class.php:98
    0.0373    1705112       +0                               -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:203
    0.0370    1702544     -000               -> cache->cache() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:61
    0.0369    1705840       +0                   -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/Cache_Lite/Lite.php:30
    0.0346    1480664     -000           -> configdbstorage->configdbstorage() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/config.class.php:103
    0.0344    1492680       +0               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/cache/cachemanager.class.php:16
    0.0339    1468880     -000               -> defined() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configfilestorage.class.php:7
    0.0338    1474544       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configabstractstorage.class.php:9
    0.0338    1474544       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configabstractstorage.class.php:8
    0.0338    1474544       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configabstractstorage.class.php:7
    0.0338    1474544       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configabstractstorage.class.php:6
    0.0338    1474544       +0                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/config/configabstractstorage.class.php:10
    0.0309    1195840       +0     -> sessionmanager::init() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:31
    0.0309    1195840       +0       -> is_readable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:203
    0.0308    1195760       +0     -> ini_set() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:19
    0.0308    1195760       +0     -> file::isreadable() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:24
    0.0308    1195760     -000     -> ini_set() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/index.php:18
    0.0225     618800       +0         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:26
    0.0225     618800     -000         -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/controller/controller.class.php:25
    0.0200     458144     -000                 -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/file/file.class.php:14
    0.0040     285160     -000               -> define() /home/benjamin/projects/plog/plog/branches/plog-1.1-ben/class/logger/logger/logger.class.php:9


More information about the pLog-svn mailing list