]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/APC/APCPlugin.php
Update translator documentation.
[quix0rs-gnu-social.git] / plugins / APC / APCPlugin.php
index 0069779004e3ca1f131149b8d660f7076ea45e7a..851a4b4abce449486fd4fa71c7abc5dba2e1c82a 100644 (file)
@@ -60,7 +60,6 @@ class APCPlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheGet(&$key, &$value)
     {
         $value = apc_fetch($key);
@@ -79,7 +78,6 @@ class APCPlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
     {
         $success = apc_store($key, $value, ((is_null($expiry)) ? 0 : $expiry));
@@ -97,7 +95,6 @@ class APCPlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheDelete(&$key, &$success)
     {
         $success = apc_delete($key);
@@ -112,6 +109,7 @@ class APCPlugin extends Plugin
                             'author' => 'Evan Prodromou',
                             'homepage' => 'http://status.net/wiki/Plugin:APC',
                             'rawdescription' =>
+                            // TRANS: Plugin description.
                             _m('Use the <a href="http://pecl.php.net/package/apc">APC</a> variable cache to cache query results.'));
         return true;
     }