Есть сайтик с галереей на php,там в самом верху есть кнопка контакты.Я тупо не могу найти где поменять линку....подскажите плизз) вот сайт: http://batikgallery.ru/gallery/main.php Вот половина кода(думаю там эта линка): PHP: <?php include(dirname(__FILE__) . '/bootstrap.inc'); /* * If they don't have a setup password, we assume that the config.php is empty and this is an * initial install */ if (!@$gallery->getConfig('setup.password')) { /* May be invalid if a multisite install lost its config.php; galleryBaseUrl unknown */ header('Location: install/'); return; } if ($gallery->isEmbedded()) { require_once(dirname(__FILE__) . '/init.inc'); } else { /* If this is a request for a public data file, give it to the user immediately */ $unsanitizedView = isset($_GET[GALLERY_FORM_VARIABLE_PREFIX . 'view']) ? $_GET[GALLERY_FORM_VARIABLE_PREFIX . 'view'] : null; $itemId = (int)(isset($_GET[GALLERY_FORM_VARIABLE_PREFIX . 'itemId']) ? $_GET[GALLERY_FORM_VARIABLE_PREFIX . 'itemId'] : null); if ($unsanitizedView == 'core.DownloadItem' && !empty($itemId)) { /* * Our URLs are immutable because they have the serial numbers embedded. If the browser * presents us with an If-Modified-Since then it has the latest version of the file already. */ if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || (function_exists('getallheaders') && ($headers = getallheaders()) && (isset($headers['If-Modified-Since']) || isset($headers['If-modified-since'])))) { header('HTTP/1.0 304 Not Modified'); return; } /* * Fast download depends on having data.gallery.cache set, so set it now. If for some * reason we fail, we'll reset it in init.inc (but that's OK). */ $gallery->setConfig( 'data.gallery.cache', $gallery->getConfig('data.gallery.base') . 'cache/'); $path = GalleryDataCache::getCachePath( array('type' => 'fast-download', 'itemId' => $itemId)); /* We don't have a platform yet so we have to use the raw file_exists */ /* Disable fast-download in maintenance mode, admins still get via core.DownloadItem */ if (file_exists($path) && !$gallery->getConfig('mode.maintenance')) { include($path); if (GalleryFastDownload()) { return; } } } /* Otherwise, proceed with our regular process */ require_once(dirname(__FILE__) . '/init.inc'); $ret = GalleryInitFirstPass(); if ($ret) { _GalleryMain_errorHandler($ret, null, false); return; } /* Process the request */ GalleryMain(); } /** * Main handler for all Gallery pages/requests. * @package Gallery */ function GalleryMain($embedded=false) { global $gallery; /* Process the request */ list ($ret, $g2Data) = _GalleryMain($embedded); if (!$ret) { $gallery->performShutdownActions(); /* Write out our session data */ $session =& $gallery->getSession(); $ret = $session->save(); } /* Complete our transaction */ if (!$ret && $gallery->isStorageInitialized()) { $storage =& $gallery->getStorage(); $ret = $storage->commitTransaction(); } /* Error handling (or redirect info in debug mode) */ if ($ret) { _GalleryMain_errorHandler($ret, $g2Data); $g2Data['isDone'] = true; if ($ret && $gallery->isStorageInitialized()) { /* Nuke our transaction, too */ $storage =& $gallery->getStorage(); $storage->rollbackTransaction(); /* Reset the auth token */ if ($ret->getErrorCode() & ERROR_REQUEST_FORGED) { $session =& $gallery->getSession(); $ret2 = $storage->beginTransaction(); if (!$ret2) { $ret2 = $session->save(); } if (!$ret2) { $storage->commitTransaction(); } } } } else if (isset($g2Data['redirectUrl'])) { /* If we're in debug mode, show a redirect page */ print '<h1> Debug Redirect </h1> ' . 'Not automatically redirecting you to the next page because we\'re in debug mode<br/>'; printf('<a href="%s">Continue to the next page</a>', $g2Data['redirectUrl']); print '<hr/>'; print '<pre>'; print $gallery->getDebugBuffer(); print '</pre>'; } return $g2Data; }