Tweak wording on delete artist page and add some more breadcrumbs

This commit is contained in:
Alex Cabal 2025-03-07 10:37:56 -06:00
parent 1136cfb2af
commit 34fd71e55a
11 changed files with 83 additions and 19 deletions

View file

@ -1,4 +0,0 @@
RewriteRule ^/artists/(.+?)/delete$ /artists/delete.php?artist-url-name=$1 [L]
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^post$/"
RewriteRule ^/artists/([^/\.]+)$ /artists/post.php?artist-url-name=$1 [L]

View file

@ -1,5 +1,11 @@
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^get$/"
RewriteRule ^/artworks/([^\./]+?)$ /artists/get.php?artist-url-name=$1 [L]
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^post$/"
RewriteRule ^/artworks/([^/\.]+)$ /artists/post.php?artist-url-name=$1 [L]
RewriteRule ^/artworks/([^/\.]+?)/delete$ /artists/delete.php?artist-url-name=$1 [L]
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^get$/"
RewriteRule ^/artworks/([^/\.]+)/([^/\.]+)$ /artworks/get.php?artist-url-name=$1&artwork-url-name=$2 [L]

View file

@ -220,7 +220,6 @@ Define conf_rewrite_root ${web_root}/config/apache/rewrites
Include ${conf_rewrite_root}/feeds.conf
Include ${conf_rewrite_root}/ebooks.conf
Include ${conf_rewrite_root}/newsletters.conf
Include ${conf_rewrite_root}/artists.conf
Include ${conf_rewrite_root}/artworks.conf
Include ${conf_rewrite_root}/polls.conf
Include ${conf_rewrite_root}/users.conf

View file

@ -202,7 +202,6 @@ Define conf_rewrite_root ${web_root}/config/apache/rewrites
Include ${conf_rewrite_root}/feeds.conf
Include ${conf_rewrite_root}/ebooks.conf
Include ${conf_rewrite_root}/newsletters.conf
Include ${conf_rewrite_root}/artists.conf
Include ${conf_rewrite_root}/artworks.conf
Include ${conf_rewrite_root}/polls.conf
Include ${conf_rewrite_root}/users.conf